diff options
| author | Sam Protsenko <[email protected]> | 2025-07-09 17:29:23 -0500 |
|---|---|---|
| committer | Minkyu Kang <[email protected]> | 2025-07-25 10:17:21 +0900 |
| commit | fcb53c5a694489960702af78bf05264d7c50d850 (patch) | |
| tree | b481ce9d8b7ca080e3c3ec13c4d675fbdc790696 | |
| parent | d15a7b045993167598fa70541ec364ace0a051a9 (diff) | |
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 <[email protected]>
Signed-off-by: Minkyu Kang <[email protected]>
| -rw-r--r-- | configs/e850-96_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
