Commit 2c660503 by Evgeni Golov

templates/debian: add aarch64 → arm64 mapping

uname -m reports aarch64, but Debian calls the arch arm64 Signed-off-by: 's avatarEvgeni Golov <evgeni@debian.org>
parent 58c89a14
...@@ -659,6 +659,8 @@ elif [ "$arch" = "x86_64" ]; then ...@@ -659,6 +659,8 @@ elif [ "$arch" = "x86_64" ]; then
arch="amd64" arch="amd64"
elif [ "$arch" = "armv7l" ]; then elif [ "$arch" = "armv7l" ]; then
arch="armhf" arch="armhf"
elif [ "$arch" = "aarch64" ]; then
arch="arm64"
elif [ "$arch" = "ppc" ]; then elif [ "$arch" = "ppc" ]; then
arch="powerpc" arch="powerpc"
elif [ "$arch" = "ppc64le" ]; then elif [ "$arch" = "ppc64le" ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment