diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-11-20 18:48:02 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-11-23 09:19:31 +0100 |
commit | b7cdecfc196686ffae34b6849fc8b5b7ef62237a (patch) | |
tree | 2d8112e47934426f627aad6a7b415d33684732f4 /lib | |
parent | 2800540d101d7b0dd0629c5177fca48331d2927d (diff) | |
download | u-boot-b7cdecfc196686ffae34b6849fc8b5b7ef62237a.zip u-boot-b7cdecfc196686ffae34b6849fc8b5b7ef62237a.tar.gz u-boot-b7cdecfc196686ffae34b6849fc8b5b7ef62237a.tar.bz2 |
efi_loader: default EFI_LOADER=n on ARM11
Some of the ARM11 boards have tight limits on the size of U-Boots. Hence
use EFI_LOADER=n as default on ARM11.
Set EFI_LOADER=y for the Raspberry Pi and Raspberry Pi Zero as these boards
have sufficient storage on the SD card.
Suggested-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index 7984d6f..21ef440 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -10,7 +10,7 @@ config EFI_LOADER depends on !EFI_STUB || !X86_64 || EFI_STUB_64BIT # We need EFI_STUB_32BIT to be set on x86_32 with EFI_STUB depends on !EFI_STUB || !X86 || X86_64 || EFI_STUB_32BIT - default y + default y if !ARM || SYS_CPU = armv7 || SYS_CPU = armv8 select LIB_UUID select HAVE_BLOCK_DEVICE select REGEX |