Current File : //usr/local/jetapps/usr/share/rear/prep/Linux-arm/330_set_efi_arch.sh |
# Set EFI architecture, used as suffix for various files in the ESP
# See https://github.com/rhboot/shim/blob/main/Make.defaults
# Set the variables even if USING_UEFI_BOOTLOADER empty or no explicit 'true' value
# cf. prep/Linux-i386/330_set_efi_arch.sh
case "$REAL_MACHINE" in
(arm64|aarch64)
EFI_ARCH=aa64
GRUB2_IMAGE_FORMAT=arm64-efi
;;
(arm*)
EFI_ARCH=arm
GRUB2_IMAGE_FORMAT=arm-efi
;;
(*)
BugError "Unknown architecture $REAL_MACHINE"
esac
EFI_ARCH_UPPER="${EFI_ARCH^^}"