From: Heinrich Schuchardt Date: Tue, 19 Nov 2019 03:19:09 +0000 (+0100) Subject: efi_loader: enable EFI_LOADER on arm1136 and arm1176 X-Git-Tag: v2020.01-rc4~23^2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=38064ee04c9b42a299f914c36a093144bd86ac50;p=oweals%2Fu-boot.git efi_loader: enable EFI_LOADER on arm1136 and arm1176 With an implementation for allow_unaligned() available for arm1136 and arm1176 UEFI can be supported on these architectures. Signed-off-by: Heinrich Schuchardt --- diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index 2f40e485ef..7984d6f42d 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -1,8 +1,10 @@ config EFI_LOADER bool "Support running UEFI applications" depends on OF_LIBFDT && ( \ - ARM && (SYS_CPU = armv7 || \ - SYS_CPU = armv8) || \ + ARM && (SYS_CPU = arm1136 || \ + SYS_CPU = arm1176 || \ + SYS_CPU = armv7 || \ + SYS_CPU = armv8) || \ X86 || RISCV || SANDBOX) # We need EFI_STUB_64BIT to be set on x86_64 with EFI_STUB depends on !EFI_STUB || !X86_64 || EFI_STUB_64BIT