Enable EFI on aarch64

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2018-05-31 13:47:47 +01:00
parent 5f387a1b86
commit 582aba0534

View File

@@ -79,12 +79,17 @@ DIR_TMP = /tmp
# Add the compiler location and version and specs to the ccache hash
CCACHE_COMPILERCHECK += $(shell gcc -dumpspecs 2>/dev/null | md5sum | cut -d ' ' -f1)
# We support EFI on x86_64
# We support EFI on x86_64 and aarch64
ifeq "$(BUILD_ARCH)" "x86_64"
EFI = 1
EFI_ARCH = x64
endif
ifeq "$(BUILD_ARCH)" "aarch64"
EFI = 1
EFI_ARCH = aa64
endif
# Basic modules
GRUB_EFI_MODULES = \
configfile \