mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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>
This commit is contained in:
parent
d47a774680
commit
38064ee04c
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue