diff options
author | Heinrich Schuchardt | 2019-11-19 04:19:09 +0100 |
---|---|---|
committer | Heinrich Schuchardt | 2019-11-19 12:10:22 +0100 |
commit | 38064ee04c9b42a299f914c36a093144bd86ac50 (patch) | |
tree | da06ca42bb24ad32f2b7f6afefd61db8b8a275bc /lib/efi_loader/Kconfig | |
parent | d47a774680d18ee5dea43d8b631048c3dc1a2b5f (diff) |
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 <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/efi_loader/Kconfig')
-rw-r--r-- | lib/efi_loader/Kconfig | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index 2f40e485ef9..7984d6f42d4 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 |