We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a06d578 commit edea20aCopy full SHA for edea20a
README.md
@@ -1,2 +1,19 @@
1
# vyos-build-arm64
2
vyos-build-arm64
3
+
4
+To build VyOS arm64 needs an additional steps:
5
+```
6
+docker pull vyos/vyos-build:current-arm64
7
+git clone -b current --single-branch https://github.com/vyos/vyos-build
8
+cd vyos-build
9
10
+docker run --rm -it --privileged --sysctl net.ipv6.conf.lo.disable_ipv6=0 -v $(pwd):/vyos -w /vyos vyos/vyos-build:current-arm64 bash
11
12
+# Add required telegraf key
13
+wget -q https://repos.influxdata.com/influxdata-archive_compat.key
14
15
+sudo ./build-vyos-image iso \
16
+ --architecture arm64 \
17
+ --custom-apt-entry "deb [arch=arm64] https://repos.influxdata.com/debian/ bookworm stable" \
18
+ --custom-apt-key /vyos/influxdata-archive_compat.key
19
0 commit comments