From a1a2a8522bec193f6448a256c2926afb8dc02fd0 Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Fri, 14 Apr 2017 13:43:52 +0900 Subject: [PATCH] TPL: TM2: config: fix to use large memory for kernel decompression TM2 kernel with KASAN and UBSAN is larger than 48MB, so this patch fixes memory for kernel decompression to 130MB. Change-Id: Ib8e52b15164a2dd83c42f47a76a3c5c3bcdb2ffa Signed-off-by: Seung-Woo Kim --- include/configs/tm2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/tm2.h b/include/configs/tm2.h index 8771ef9db4..83cd6e3d8c 100644 --- a/include/configs/tm2.h +++ b/include/configs/tm2.h @@ -89,7 +89,7 @@ /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 << 20)) -#define CONFIG_SYS_BOOTM_LEN (48 << 20) +#define CONFIG_SYS_BOOTM_LEN (130 << 20) /* Serial port Exynos S5P through the device model */ #define CONFIG_BAUDRATE 115200 -- 2.34.1