diff --git a/build/jam/ArchitectureRules b/build/jam/ArchitectureRules index dd29391867..d09b6cd2df 100644 --- a/build/jam/ArchitectureRules +++ b/build/jam/ArchitectureRules @@ -258,6 +258,7 @@ rule KernelArchitectureSetup architecture case arm64 : HAIKU_KERNEL_PLATFORM ?= efi ; + HAIKU_BOOT_TARGETS += efi ; HAIKU_BOOT_SDIMAGE_SIZE ?= 32 ; # SOC's like allwinner need an offset to skip the hardcoded initial loader diff --git a/src/system/boot/Jamfile b/src/system/boot/Jamfile index 57a9b8694c..c83002fbb5 100644 --- a/src/system/boot/Jamfile +++ b/src/system/boot/Jamfile @@ -107,6 +107,8 @@ rule BuildEFILoader { OUTPUT_TARGET on $(efiLoader) = efi-app-x86_64 ; case arm : OUTPUT_TARGET on $(efiLoader) = binary ; + case arm64 : + OUTPUT_TARGET on $(efiLoader) = binary ; case * : Exit "Currently unsupported arch:" $(TARGET_ARCH) ; }