From: Michael Tremer Date: Thu, 31 May 2018 12:47:47 +0000 (+0100) Subject: Enable EFI on aarch64 X-Git-Tag: v2.21-core124~77^2~49 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=582aba05344e161a2ecbed81eef19005a80289ed;p=ipfire-2.x.git Enable EFI on aarch64 Signed-off-by: Michael Tremer --- diff --git a/lfs/Config b/lfs/Config index d21623cb64..bb2939078b 100644 --- a/lfs/Config +++ b/lfs/Config @@ -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 \