From: Chanho Park Date: Tue, 10 May 2016 10:27:58 +0000 (+0900) Subject: artik: configs: resize malloc pool len X-Git-Tag: submit/tizen/20161205.083345~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=943a8dff8f52445ee91720cc7b4d208eb44faffe;p=profile%2Fcommon%2Fplatform%2Fkernel%2Fu-boot-artik.git 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 --- 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