diff options
author | Ryan Finnie <ryan@finnie.org> | 2020-05-31 11:57:08 -0700 |
---|---|---|
committer | Ryan Finnie <ryan@finnie.org> | 2020-06-01 07:49:56 -0700 |
commit | 56186add3c47969678b74ce956c32d0dc9600e04 (patch) | |
tree | 0e566343a53275d78f93085c93b04d494c44439a | |
parent | 6b0cc5529bb13bafdd503bff9dde61fa50eabdb8 (diff) | |
download | vyos-live-build-56186add3c47969678b74ce956c32d0dc9600e04.tar.gz vyos-live-build-56186add3c47969678b74ce956c32d0dc9600e04.zip |
architectures.sh: armhf/armel can be built on arm64
-rwxr-xr-x | functions/architectures.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/functions/architectures.sh b/functions/architectures.sh index f01826990..13140c31b 100755 --- a/functions/architectures.sh +++ b/functions/architectures.sh @@ -51,6 +51,10 @@ Check_crossarchitectures () CROSS="amd64 i386" ;; + arm64) + CROSS="arm64 armhf armel" + ;; + powerpc|ppc64) CROSS="powerpc ppc64" ;; |