diff options
author | Michael Brown | 2016-05-08 01:20:20 +0200 |
---|---|---|
committer | Michael Brown | 2016-05-08 01:20:20 +0200 |
commit | 17c6f322eef5e0a2250a89b140486cf07598d2fa (patch) | |
tree | c67442d1e56245b42f9e7b98f9fa0e7b9cc24b1d /src/config | |
parent | [arm] Split out 32-bit-specific code to arch/arm32 (diff) | |
download | ipxe-17c6f322eef5e0a2250a89b140486cf07598d2fa.tar.gz ipxe-17c6f322eef5e0a2250a89b140486cf07598d2fa.tar.xz ipxe-17c6f322eef5e0a2250a89b140486cf07598d2fa.zip |
[arm] Add support for 64-bit ARM (Aarch64)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/defaults/efi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/defaults/efi.h b/src/config/defaults/efi.h index 8d3a8bf2..ba4eed93 100644 --- a/src/config/defaults/efi.h +++ b/src/config/defaults/efi.h @@ -40,7 +40,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #define CPUID_CMD /* x86 CPU feature detection command */ #endif -#if defined ( __arm__ ) +#if defined ( __arm__ ) || defined ( __aarch64__ ) #define IOAPI_ARM #define NAP_EFIARM #endif |