From: Ɓukasz Majewski Date: Fri, 28 Jun 2013 16:43:53 +0000 (+0200) Subject: arm:trats: Increase malloc pool size (for DFU ext4 transfers) X-Git-Tag: v2013.07-rc3~4^2~6^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9199fce23968c9657e00b74ee44f41d0e0fe68b5;p=kernel%2Fu-boot.git arm:trats: Increase malloc pool size (for DFU ext4 transfers) Commit: dfu: make data buffer size configurable SHA1: 89a72b2e0e141042c9109185e02d39b2107ffc62 replaced statically allocated buffers with one allocated with memalign. Malloc pool size of 1MiB was too small, since we needed bigger buffer to transfer for example uImage. Signed-off-by: Lukasz Majewski Cc: Minkyu Kang Signed-off-by: Minkyu Kang --- diff --git a/include/configs/trats.h b/include/configs/trats.h index c70838b..103295e 100644 --- a/include/configs/trats.h +++ b/include/configs/trats.h @@ -66,7 +66,7 @@ #define CONFIG_MACH_TYPE MACH_TYPE_TRATS /* Size of malloc() pool */ -#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (1 << 20)) +#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (16 << 20)) /* select serial console configuration */ #define CONFIG_SERIAL2 /* use SERIAL 2 */