]> Git Repo - J-u-boot.git/commitdiff
configs/*imxrt10*: SYS_MALLOC_LEN is too large
authorJesse Taube <[email protected]>
Thu, 17 Mar 2022 18:33:19 +0000 (14:33 -0400)
committerStefano Babic <[email protected]>
Tue, 12 Apr 2022 19:08:23 +0000 (21:08 +0200)
1M of heap is more than internal ram making booting without SDRAM not
possible now it is 256k

Signed-off-by: Jesse Taube <[email protected]>
configs/imxrt1020-evk_defconfig
configs/imxrt1050-evk_defconfig

index 5bef665bc0cc894c4df505d0b29f6ac12c028beb..3c490bf6b23ef5f995c8a2bd81b2abfb73e785f0 100644 (file)
@@ -1,7 +1,7 @@
 CONFIG_ARM=y
 CONFIG_ARCH_IMXRT=y
 CONFIG_SYS_TEXT_BASE=0x80002000
-CONFIG_SYS_MALLOC_LEN=0x100000
+CONFIG_SYS_MALLOC_LEN=0x40000
 CONFIG_SYS_MALLOC_F_LEN=0x8000
 CONFIG_SPL_GPIO=y
 CONFIG_SPL_LIBCOMMON_SUPPORT=y
index 118e7177a203a452a63afeaf22d120174350f321..7193e93755221d2265b75e0b86a5c9f263b998f7 100644 (file)
@@ -3,7 +3,7 @@ CONFIG_SYS_DCACHE_OFF=y
 # CONFIG_SPL_SYS_DCACHE_OFF is not set
 CONFIG_ARCH_IMXRT=y
 CONFIG_SYS_TEXT_BASE=0x80002000
-CONFIG_SYS_MALLOC_LEN=0x100000
+CONFIG_SYS_MALLOC_LEN=0x40000
 CONFIG_SYS_MALLOC_F_LEN=0x8000
 CONFIG_SPL_GPIO=y
 CONFIG_SPL_LIBCOMMON_SUPPORT=y
This page took 0.04245 seconds and 4 git commands to generate.