Skip to content
Snippets Groups Projects
Commit 9f604425 authored by Simon Glass's avatar Simon Glass
Browse files

sandbox: Increase memory size to 32MB


The current 4MB size is a little small for some tests, so increase it.

Reviewed-by: default avatarHung-ying Tyan <tyanh@chromium.org>
Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 66bd1cff
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
/* /*
* Size of malloc() pool, although we don't actually use this yet. * 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_HUSH_PARSER
#define CONFIG_SYS_LONGHELP /* #undef to save memory */ #define CONFIG_SYS_LONGHELP /* #undef to save memory */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment