From 94353b2b259f73b748ce426b213147bb69ebe7dc Mon Sep 17 00:00:00 2001 From: bryan Date: Mon, 27 Jul 2026 14:43:57 -0400 Subject: [PATCH] Translate 32-bit ARM host arch to MC arch --- installJRMC | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/installJRMC b/installJRMC index f5502f6..5a76ebb 100755 --- a/installJRMC +++ b/installJRMC @@ -304,8 +304,9 @@ init() { # Detect host architecture and translate to MC convention if ARCH=$(uname -m); then case $ARCH in - x86_64) MC_ARCH="amd64" ;; - aarch64) MC_ARCH="arm64" ;; + x86_64|amd64) MC_ARCH="amd64" ;; + aarch64|arm64) MC_ARCH="arm64" ;; + armv8l|armv7*|armv6*) MC_ARCH="armhf" ;; *) MC_ARCH="$ARCH" ;; esac else