diff options
author | Simon Glass | 2018-12-03 04:37:17 -0700 |
---|---|---|
committer | Simon Glass | 2018-12-13 16:32:49 -0700 |
commit | 15a5c72ca4fc4f1df04ac3ea89c0ba4e1cd48ab4 (patch) | |
tree | 988a6f13f953b6034023f28bac52bcc7bc511198 /Kconfig | |
parent | d117d8f19b0625f88309e47a8a32c2faa384dddc (diff) |
sandbox: Increase the pre-relocation memory
This is close to full now, so increase it to avoid problems with adding
more devices.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -126,6 +126,7 @@ config SYS_BOOT_GET_KBD config SYS_MALLOC_F bool "Enable malloc() pool before relocation" default y if DM + help Before relocation, memory is very limited on many platforms. Still, we can provide a small malloc() pool if needed. Driver model in @@ -136,6 +137,7 @@ config SYS_MALLOC_F_LEN hex "Size of malloc() pool before relocation" depends on SYS_MALLOC_F default 0x1000 if AM33XX + default 0x2800 if SANDBOX default 0x400 help Before relocation, memory is very limited on many platforms. Still, |