diff options
author | Igor Opaniuk <igor.opaniuk@toradex.com> | 2019-05-17 17:48:43 +0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-06-11 10:42:48 +0200 |
commit | cd7e76ffbcd340a7d3182d70f21cdebd98a72a15 (patch) | |
tree | be8aa21236d13976fc112f6a258863f2a18449ed /configs/colibri_vf_defconfig | |
parent | 8b98a4916f8202cd63658e52d3d929f02dc83ef5 (diff) | |
download | u-boot-cd7e76ffbcd340a7d3182d70f21cdebd98a72a15.tar.gz |
toradex apalis/colibri: extend CONFIG_SYS_MALLOC_F_LEN
Extend size of the malloc() pool for use before relocation, from 0x400
(default one) to 0x2000 (CONFIG_SYS_MALLOC_F_LEN=0x2000),
as adding of DM_FLAG_PRE_RELOC flag to simple-bus driver introduced a
regression on multiple boards, because of more intensive usage of malloc()
pool and therefore a broken boot as the size of pool isn't sufficient.
Fixes: 3a7c45f6a7 ("simple-bus: add DM_FLAG_PRE_RELOC flag to simple-bus")
Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'configs/colibri_vf_defconfig')
-rw-r--r-- | configs/colibri_vf_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/colibri_vf_defconfig b/configs/colibri_vf_defconfig index 7334002df8..75498fddb3 100644 --- a/configs/colibri_vf_defconfig +++ b/configs/colibri_vf_defconfig @@ -2,7 +2,7 @@ CONFIG_ARM=y CONFIG_SYS_THUMB_BUILD=y CONFIG_ARCH_VF610=y CONFIG_SYS_TEXT_BASE=0x3f401000 -CONFIG_SYS_MALLOC_F_LEN=0x800 +CONFIG_SYS_MALLOC_F_LEN=0x2000 CONFIG_NR_DRAM_BANKS=1 CONFIG_TARGET_COLIBRI_VF=y CONFIG_ENV_VARS_UBOOT_CONFIG=y |