diff options
author | Thomas Weißschuh <thomas.weissschuh@linutronix.de> | 2024-02-09 09:06:53 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-03-04 13:41:04 -0500 |
commit | f05add3822a09273392bc9c74b6dc4d6a42917ec (patch) | |
tree | 4dd088918257877f3a3ef141a879468a3f0d73b3 /configs | |
parent | cc801630b27c2f5187a58e1d7f42a15550bbf542 (diff) | |
download | u-boot-f05add3822a09273392bc9c74b6dc4d6a42917ec.tar.gz u-boot-f05add3822a09273392bc9c74b6dc4d6a42917ec.tar.bz2 u-boot-f05add3822a09273392bc9c74b6dc4d6a42917ec.zip |
configs: am64x_evm_r5_defconfig: enlarge simple malloc pool
With the default size the stack grows into the malloc, pool leading to
stack corruption and boot failure.
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/am64x_evm_r5_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/am64x_evm_r5_defconfig b/configs/am64x_evm_r5_defconfig index 56df6a4a19..707fe506f3 100644 --- a/configs/am64x_evm_r5_defconfig +++ b/configs/am64x_evm_r5_defconfig @@ -42,6 +42,7 @@ CONFIG_SPL_SYS_REPORT_STACK_F_USAGE=y CONFIG_SPL_BOARD_INIT=y CONFIG_SPL_SYS_MALLOC_SIMPLE=y CONFIG_SPL_STACK_R=y +CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x400000 CONFIG_SPL_SEPARATE_BSS=y CONFIG_SPL_SYS_MALLOC=y CONFIG_SPL_HAS_CUSTOM_MALLOC_START=y |