diff options
author | Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> | 2017-07-21 13:37:42 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-07-28 16:17:04 +0000 |
commit | ff1477911e2b33f0d2dcbf1405b628f48e994c8a (patch) | |
tree | a2e2c96214c6c43bb37dd0e93a95815237badb1e /payloads | |
parent | c38ab85cd44457a6dd522a81d6c14b075796c1b0 (diff) | |
download | coreboot-ff1477911e2b33f0d2dcbf1405b628f48e994c8a.tar.gz coreboot-ff1477911e2b33f0d2dcbf1405b628f48e994c8a.tar.bz2 coreboot-ff1477911e2b33f0d2dcbf1405b628f48e994c8a.zip |
libpayload: Double HEAP_SIZE in default config
Bettong board with the standard configuration is not capable of
running nvramui with the default size.
malloc error happens on PDC_makelines(). Resulting in:
Booting from CBFS...
Run img/nvramcui
Calling addr 0x00100000
initscr(): Unable to create stdscr.
exited with status 1
Change-Id: I56a0fb3319fe77599bf3dd6c328a0b70be60a348
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Reviewed-on: https://review.coreboot.org/20681
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/libpayload/configs/defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/payloads/libpayload/configs/defconfig b/payloads/libpayload/configs/defconfig index ef1982f382e2..896039ea0bcc 100644 --- a/payloads/libpayload/configs/defconfig +++ b/payloads/libpayload/configs/defconfig @@ -5,3 +5,4 @@ CONFIG_LP_USB_UHCI=y CONFIG_LP_USB_OHCI=y CONFIG_LP_USB_EHCI=y CONFIG_LP_USB_XHCI=y +CONFIG_LP_HEAP_SIZE=262144 |