From 943a8dff8f52445ee91720cc7b4d208eb44faffe Mon Sep 17 00:00:00 2001 From: Chanho Park Date: Tue, 10 May 2016 19:27:58 +0900 Subject: [PATCH] artik: configs: resize malloc pool len Current malloc len is too much and consume too long to initialize them. There is no problem just adding 2MB for malloc pool. Change-Id: I53ab0e9ae420a365a9513224d547ffd4646e562a Signed-off-by: Chanho Park --- include/configs/artik_common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/configs/artik_common.h b/include/configs/artik_common.h index 22ac9bc5c..df02f9e1a 100755 --- a/include/configs/artik_common.h +++ b/include/configs/artik_common.h @@ -272,7 +272,8 @@ /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (1 << 20) + \ - CONFIG_SYS_DFU_DATA_BUF_SIZE * 4) + CONFIG_SYS_DFU_DATA_BUF_SIZE * 2 + \ + (2 << 20)) /* Configuration of ROOTFS_ATAGS */ #define CONFIG_ROOTFS_ATAGS -- 2.34.1