Skip to content

Commit

Permalink
Add README
Browse files Browse the repository at this point in the history
sever-sever committed May 25, 2024
1 parent a06d578 commit edea20a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,19 @@
# vyos-build-arm64
vyos-build-arm64

To build VyOS arm64 needs an additional steps:
```
docker pull vyos/vyos-build:current-arm64
git clone -b current --single-branch https://github.com/vyos/vyos-build
cd vyos-build
docker run --rm -it --privileged --sysctl net.ipv6.conf.lo.disable_ipv6=0 -v $(pwd):/vyos -w /vyos vyos/vyos-build:current-arm64 bash
# Add required telegraf key
wget -q https://repos.influxdata.com/influxdata-archive_compat.key
sudo ./build-vyos-image iso \
--architecture arm64 \
--custom-apt-entry "deb [arch=arm64] https://repos.influxdata.com/debian/ bookworm stable" \
--custom-apt-key /vyos/influxdata-archive_compat.key
```

0 comments on commit edea20a

Please sign in to comment.