The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxc/pull/1643
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === uname -m reports aarch64, but Debian calls the arch arm64 Signed-off-by: Evgeni Golov <[email protected]>
From 2c660503521d74501d8e93a9c283a8e1a9809667 Mon Sep 17 00:00:00 2001 From: Evgeni Golov <[email protected]> Date: Sat, 24 Jun 2017 17:24:49 +0200 Subject: [PATCH] =?UTF-8?q?templates/debian:=20add=20aarch64=20=E2=86=92?= =?UTF-8?q?=20arm64=20mapping?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit uname -m reports aarch64, but Debian calls the arch arm64 Signed-off-by: Evgeni Golov <[email protected]> --- templates/lxc-debian.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/lxc-debian.in b/templates/lxc-debian.in index 3de87f673..7df901ae3 100644 --- a/templates/lxc-debian.in +++ b/templates/lxc-debian.in @@ -659,6 +659,8 @@ elif [ "$arch" = "x86_64" ]; then arch="amd64" elif [ "$arch" = "armv7l" ]; then arch="armhf" +elif [ "$arch" = "aarch64" ]; then + arch="arm64" elif [ "$arch" = "ppc" ]; then arch="powerpc" elif [ "$arch" = "ppc64le" ]; then
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
