From 11d78234b2f2058d7d7b4bb22b1fcfe220a822a6 Mon Sep 17 00:00:00 2001 From: knoflook Date: Wed, 20 Apr 2022 13:37:51 +0200 Subject: [PATCH] installer: add 32 bit arm support --- scripts/installer/installer | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/installer/installer b/scripts/installer/installer index cbc72b08..7ba96d0d 100755 --- a/scripts/installer/installer +++ b/scripts/installer/installer @@ -47,6 +47,12 @@ function install_abra_release { ARCH=$(uname -m) if [[ $ARCH =~ "aarch64" ]]; then ARCH="arm64" + elif [[ $ARCH =~ "armv5l" ]]; then + ARCH="armv5" + elif [[ $ARCH =~ "armv6l" ]]; then + ARCH="armv6" + elif [[ $ARCH =~ "armv7l" ]]; then + ARCH="armv7" fi PLATFORM=$(uname -s | tr '[:upper:]' '[:lower:]')_$ARCH FILENAME="abra_"$ABRA_VERSION"_"$PLATFORM""