From: Carlo Landmeter Date: Sun, 7 Aug 2016 09:21:05 +0000 (+0000) Subject: templates: add support for new arch on Alpine Linux X-Git-Tag: lxc-2.1.0~363^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12d233d5a3d15387ff1b9835a17ffeeffb51b7ad;p=thirdparty%2Flxc.git templates: add support for new arch on Alpine Linux Signed-off-by: Carlo Landmeter --- diff --git a/templates/lxc-alpine.in b/templates/lxc-alpine.in index c78795cb0..988f10937 100644 --- a/templates/lxc-alpine.in +++ b/templates/lxc-alpine.in @@ -123,6 +123,8 @@ parse_arch() { case "$1" in x86 | i[3-6]86) echo 'x86';; x86_64 | amd64) echo 'x86_64';; + aarch64 | arm64) echo 'aarch64';; + armv7) echo 'armv7';; arm*) echo 'armhf';; *) return 1;; esac