]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
templates: add support for new arch on Alpine Linux 1116/head
authorCarlo Landmeter <clandmeter@gmail.com>
Sun, 7 Aug 2016 09:21:05 +0000 (09:21 +0000)
committerCarlo Landmeter <clandmeter@gmail.com>
Sun, 7 Aug 2016 12:42:32 +0000 (12:42 +0000)
Signed-off-by: Carlo Landmeter <clandmeter@gmail.com>
templates/lxc-alpine.in

index c78795cb0d19873b35acdd975de30066da439867..988f1093717eff387c3bee16e938ed529cfe4a29 100644 (file)
@@ -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