From cd7e76ffbcd340a7d3182d70f21cdebd98a72a15 Mon Sep 17 00:00:00 2001 From: Igor Opaniuk Date: Fri, 17 May 2019 17:48:43 +0300 Subject: 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 Reviewed-by: Bin Meng --- configs/colibri_imx6_defconfig | 1 + 1 file changed, 1 insertion(+) (limited to 'configs/colibri_imx6_defconfig') diff --git a/configs/colibri_imx6_defconfig b/configs/colibri_imx6_defconfig index 72e9128a69..f1decf89a9 100644 --- a/configs/colibri_imx6_defconfig +++ b/configs/colibri_imx6_defconfig @@ -1,6 +1,7 @@ CONFIG_ARM=y CONFIG_ARCH_MX6=y CONFIG_SYS_TEXT_BASE=0x17800000 +CONFIG_SYS_MALLOC_F_LEN=0x2000 CONFIG_SPL_GPIO_SUPPORT=y CONFIG_SPL_LIBCOMMON_SUPPORT=y CONFIG_SPL_LIBGENERIC_SUPPORT=y -- cgit v1.2.3