From 5a62024695ab761c6da59eae26f8df1866cae752 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 10 May 2013 17:46:02 +0200 Subject: [PATCH] sysmobts-v2: Increase the malloc length to 10MB for ubifs recovery Sometimes the ubifs can not be recovered and this is due not being able to allocate enough memory. Increase the RAM size to something that is hopefully 10MB of RAM. --- include/configs/davinci_sysmobts_v2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/davinci_sysmobts_v2.h b/include/configs/davinci_sysmobts_v2.h index ac7b33f0d0..59c345073f 100644 --- a/include/configs/davinci_sysmobts_v2.h +++ b/include/configs/davinci_sysmobts_v2.h @@ -49,7 +49,7 @@ /*=============*/ /* Memory Info */ /*=============*/ -#define CONFIG_SYS_MALLOC_LEN (0x10000 + 2048*1024) /* malloc() len */ +#define CONFIG_SYS_MALLOC_LEN (0x10000 + 10485760) /* malloc() len */ #define CONFIG_SYS_GBL_DATA_SIZE 128 /* reserved for initial data */ #define CONFIG_SYS_MEMTEST_START 0x80000000 /* memtest start address */ #define CONFIG_SYS_MEMTEST_END 0x81000000 /* 16MB RAM test */