diff options
author | Tom Rini <trini@konsulko.com> | 2020-08-03 08:01:08 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-03 08:01:08 -0400 |
commit | 4dc3ba568fd22ef6a5a061ba6675fcfd4c3ece70 (patch) | |
tree | 927060fe33d69ee04c4cace328297ac92f151bc5 /arch/arm | |
parent | a2d051e7b6a8f87add1067d936bb0c805a47b0df (diff) | |
parent | 5c2227e4956f3287165ef5aac55ee5e96a61a518 (diff) |
Merge tag 'efi-2020-10-rc2' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-10-rc2
This series comprises error corrections for the UEFI subsystem:
* make the memory size reserved for the U-Boot stack customizable
and reduce it for the MAIX board
* correct build dependencies for UEFI unit test
* enable read-only UEFI variable are enabled with the TEE backend
* add 10 ms wait to sysreset to fix a problem with unit testing
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/Kconfig | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 3e11ddfa9b..d3ac8e1f47 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -503,23 +503,6 @@ config TPL_USE_ARCH_MEMSET Such an implementation may be faster under some conditions but may increase the binary size. -config SET_STACK_SIZE - bool "Enable an option to set max stack size that can be used" - default y if ARCH_VERSAL || ARCH_ZYNQMP || ARCH_ZYNQ - help - This will enable an option to set max stack size that can be - used by U-Boot. - -config STACK_SIZE - hex "Define max stack size that can be used by U-Boot" - depends on SET_STACK_SIZE - default 0x4000000 if ARCH_VERSAL || ARCH_ZYNQMP - default 0x1000000 if ARCH_ZYNQ - help - Define Max stack size that can be used by U-Boot so that the - initrd_high will be calculated as base stack pointer minus this - stack size. - config ARM64_SUPPORT_AARCH32 bool "ARM64 system support AArch32 execution state" depends on ARM64 |