From: Simon Glass <sjg@chromium.org>
Date: Fri, 11 Jul 2014 04:23:32 +0000 (-0600)
Subject: sandbox: config: Enable pre-relocation malloc()
X-Git-Tag: v2025.01-rc5-pxa1908~14988
X-Git-Url: http://git.dujemihanovic.xyz/html/%7B%7B%20.RelPermalink%20%7D%7D?a=commitdiff_plain;h=b53e94b1329fd8b4fbd128f0a07a060a7c2e2149;p=u-boot.git

sandbox: config: Enable pre-relocation malloc()

Enable this for sandbox so that we will be able to use driver model before
relocation.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h
index 12b69d9a24..bf2d25c871 100644
--- a/include/configs/sandbox.h
+++ b/include/configs/sandbox.h
@@ -68,8 +68,10 @@
 #define CONFIG_EFI_PARTITION
 
 /*
- * Size of malloc() pool, although we don't actually use this yet.
+ * Size of malloc() pool, before and after relocation
  */
+#define CONFIG_SYS_MALLOC_F_LEN	(1 << 10)
+#define CONFIG_MALLOC_F_ADDR		0x0010000
 #define CONFIG_SYS_MALLOC_LEN		(32 << 20)	/* 32MB  */
 
 #define CONFIG_SYS_HUSH_PARSER