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

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: default avatarSimon Glass <sjg@chromium.org>
parent 29afe9e6
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
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