diff options
author | Andreas Bießmann <andreas.devel@googlemail.com> | 2012-10-29 13:58:55 +0000 |
---|---|---|
committer | Prafulla Wadaskar <prafulla@marvell.com> | 2013-01-09 04:12:11 +0530 |
commit | bfbfab94fd0b38ca780e6dda99657b0c848c9bb9 (patch) | |
tree | 1ebd52f139656d859b0d3d85c53df0f13f4c9934 | |
parent | 3e75e69668bd5be89aad835f1e990badf921f2e4 (diff) | |
download | u-boot-imx-bfbfab94fd0b38ca780e6dda99657b0c848c9bb9.zip u-boot-imx-bfbfab94fd0b38ca780e6dda99657b0c848c9bb9.tar.gz u-boot-imx-bfbfab94fd0b38ca780e6dda99657b0c848c9bb9.tar.bz2 |
mv-common.h: increase malloc arena to 4MiB
This will fix the following error:
---8<---
UBIFS error (pid 0): ubifs_mount: Error reading superblock on volume 'ubi:root' errno=-12!
--->8---
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Cc: prafulla@marvell.com
Cc: dimax.main@gmail.com
Tested-by: Alex Xol <dimax.main@gmail.com>
-rw-r--r-- | include/configs/mv-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mv-common.h b/include/configs/mv-common.h index 7086d1d..405a842 100644 --- a/include/configs/mv-common.h +++ b/include/configs/mv-common.h @@ -92,7 +92,7 @@ /* * Size of malloc() pool */ -#define CONFIG_SYS_MALLOC_LEN (1024 * 1024) /* 1MiB for malloc() */ +#define CONFIG_SYS_MALLOC_LEN (1024 * 1024 * 4) /* 4MiB for malloc() */ /* * Other required minimal configurations |