From 26ebf49b18e72f9757bdf4d380fd16af4f80b774 Mon Sep 17 00:00:00 2001 From: kxtzownsu Date: Fri, 17 Jan 2025 18:29:42 +0000 Subject: [PATCH] e --- builder/lib/detect_arch.sh | 1 + 1 file changed, 1 insertion(+) 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