From 12d233d5a3d15387ff1b9835a17ffeeffb51b7ad Mon Sep 17 00:00:00 2001 From: Carlo Landmeter Date: Sun, 7 Aug 2016 09:21:05 +0000 Subject: [PATCH] templates: add support for new arch on Alpine Linux Signed-off-by: Carlo Landmeter --- templates/lxc-alpine.in | 2 ++ 1 file changed, 2 insertions(+) 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