diff options
author | Simon Glass <sjg@chromium.org> | 2014-02-27 13:25:56 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-03-17 20:05:45 -0600 |
commit | 9f6044256ecb3aa2d62f1f26ca564d0e55e19458 (patch) | |
tree | 0205c1727c019b8ae4007ba0e83c1be789d74ae9 | |
parent | 66bd1cff901c5b19b351c7b5ad48cee09c15d992 (diff) | |
download | u-boot-imx-9f6044256ecb3aa2d62f1f26ca564d0e55e19458.zip u-boot-imx-9f6044256ecb3aa2d62f1f26ca564d0e55e19458.tar.gz u-boot-imx-9f6044256ecb3aa2d62f1f26ca564d0e55e19458.tar.bz2 |
sandbox: Increase memory size to 32MB
The current 4MB size is a little small for some tests, so increase it.
Reviewed-by: Hung-ying Tyan <tyanh@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | include/configs/sandbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 6f424e1..a31fb66 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -66,7 +66,7 @@ /* * Size of malloc() pool, although we don't actually use this yet. */ -#define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */ +#define CONFIG_SYS_MALLOC_LEN (32 << 20) /* 32MB */ #define CONFIG_SYS_HUSH_PARSER #define CONFIG_SYS_LONGHELP /* #undef to save memory */ |