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.
This commit is contained in:
Holger Hans Peter Freyther 2013-05-10 17:46:02 +02:00
parent 898a3c2013
commit 5a62024695
1 changed files with 1 additions and 1 deletions

View File

@ -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 */