From: Simon Glass <sjg@chromium.org>
Date: Thu, 27 Feb 2014 20:25:56 +0000 (-0700)
Subject: sandbox: Increase memory size to 32MB
X-Git-Tag: v2025.01-rc5-pxa1908~15423^2~44
X-Git-Url: http://git.dujemihanovic.xyz/%22/icons/right.gif/static/git-favicon.png?a=commitdiff_plain;h=9f6044256ecb3aa2d62f1f26ca564d0e55e19458;p=u-boot.git

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>
---

diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h
index 6f424e1e68..a31fb66fb9 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 */