Skip to content
Snippets Groups Projects
Commit c524997a authored by Heinrich Schuchardt's avatar Heinrich Schuchardt Committed by Alexander Graf
Browse files

efi_loader: no support for ARMV7_NONSEC=y


We do not support bootefi booting ARMv7 in non-secure mode.

Signed-off-by: default avatarHeinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
parent d8d8997b
No related branches found
No related tags found
No related merge requests found
...@@ -324,6 +324,8 @@ This driver is only available if U-Boot is configured with ...@@ -324,6 +324,8 @@ This driver is only available if U-Boot is configured with
* persistence * persistence
* runtime support * runtime support
* support bootefi booting ARMv7 in non-secure mode (CONFIG_ARMV7_NONSEC=y)
## Links ## Links
* [1](http://uefi.org/specifications) * [1](http://uefi.org/specifications)
......
config EFI_LOADER config EFI_LOADER
bool "Support running EFI Applications in U-Boot" bool "Support running EFI Applications in U-Boot"
depends on (ARM || X86) && OF_LIBFDT depends on (ARM || X86) && OF_LIBFDT
# We do not support bootefi booting ARMv7 in non-secure mode
depends on !ARMV7_NONSEC
# We need EFI_STUB_64BIT to be set on x86_64 with EFI_STUB # We need EFI_STUB_64BIT to be set on x86_64 with EFI_STUB
depends on !EFI_STUB || !X86_64 || EFI_STUB_64BIT depends on !EFI_STUB || !X86_64 || EFI_STUB_64BIT
# We need EFI_STUB_32BIT to be set on x86_32 with EFI_STUB # We need EFI_STUB_32BIT to be set on x86_32 with EFI_STUB
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment