From: Sam Protsenko Date: Wed, 9 Jul 2025 22:29:23 +0000 (-0500) Subject: configs: e850-96: Increase malloc() pool size X-Git-Tag: v2025.10-rc1~10^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fcb53c5a694489960702af78bf05264d7c50d850;p=thirdparty%2Fu-boot.git configs: e850-96: Increase malloc() pool size "fastboot flash" tries to malloc 8 MiB buffer after receiving data over USB and trying to write it to eMMC. Right now only 8.12 MiB malloc is available for E850-96 overall, which leads to this issue: Malloc failed for: CHUNK_TYPE_RAW Fix it by increasing malloc pool size from 8.12 MiB up to 32 MiB, like it's done in many other boards using fastboot. Signed-off-by: Sam Protsenko Signed-off-by: Minkyu Kang --- diff --git a/configs/e850-96_defconfig b/configs/e850-96_defconfig index f0e9ff7c447..375805b3e5c 100644 --- a/configs/e850-96_defconfig +++ b/configs/e850-96_defconfig @@ -3,7 +3,7 @@ CONFIG_ARCH_CPU_INIT=y CONFIG_ARM_SMCCC=y CONFIG_ARCH_EXYNOS=y CONFIG_TEXT_BASE=0xf8800000 -CONFIG_SYS_MALLOC_LEN=0x81f000 +CONFIG_SYS_MALLOC_LEN=0x2000000 CONFIG_SYS_MALLOC_F_LEN=0x4000 CONFIG_ARCH_EXYNOS9=y CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y