diff --git a/builder/lib/detect_arch.sh b/builder/lib/detect_arch.sh index e4d6a56..5536329 100644 --- a/builder/lib/detect_arch.sh +++ b/builder/lib/detect_arch.sh @@ -7,6 +7,7 @@ detect_arch() { if [ -f "$MNT_ROOT/bin/bash" ]; then case "$(file -b "$MNT_ROOT/bin/bash" | awk -F ', ' '{print $2}' | tr '[:upper:]' '[:lower:]')" in # for now assume arm has aarch64 kernel + # theres no armv7 shims leaked so far iirc *aarch64* | *armv8* | *arm*) TARGET_ARCH=aarch64 ;; esac fi