-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
a06d578
commit edea20a
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |