From a888ade1008a4d3261d1ceac536ec82755f7ec22 Mon Sep 17 00:00:00 2001 From: "jino.cho" Date: Tue, 19 Apr 2016 12:05:22 +0900 Subject: [PATCH] artik: configs: increase size of malloc() pool This patch increase size of malloc() pool for Thor downloader. When downloading image of the platform, "Thor failed" error occurs due to the small size of malloc() pool. Change-Id: I69154640c0e4f587645d7cb97b2d04929959e0cc Signed-off-by: jino.cho --- include/configs/artik_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/artik_common.h b/include/configs/artik_common.h index adadf7f60..c2c507dc8 100644 --- a/include/configs/artik_common.h +++ b/include/configs/artik_common.h @@ -272,7 +272,7 @@ /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (1 << 20) + \ - CONFIG_SYS_DFU_DATA_BUF_SIZE * 2) + CONFIG_SYS_DFU_DATA_BUF_SIZE * 4) /* Configuration of ROOTFS_ATAGS */ #define CONFIG_ROOTFS_ATAGS -- 2.34.1