PicoShim/builder/lib/detect_arch.sh
kxtzownsu e8b6a73f87 basic functionality
(THIS COMMIT WILL NOT BUILD)

changelog:
- builder will now apply rootfs to image
- builder has basic functions to shrink image
2024-09-12 22:44:10 -04:00

18 lines
422 B
Bash

detect_arch() {
LOOPDEV="$1"
MNT_ROOT=$(mktemp -d)
mount -o ro "${LOOPDEV}p3" "$MNT_ROOT"
TARGET_ARCH=x86_64
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
*aarch64* | *armv8* | *arm*) TARGET_ARCH=arm64 ;;
esac
fi
echo "$TARGET_ARCH"
umount "$MNT_ROOT"
rmdir "$MNT_ROOT"
}