From f289f5ed90c462f6b8f18ed787e9c27fc142fb6c 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 9622eff6af..620047117f 100644 --- a/include/configs/davinci_sysmobts_v2.h +++ b/include/configs/davinci_sysmobts_v2.h @@ -50,7 +50,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 */