aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Jones <marc.jones@se-eng.com>2012-02-28 17:18:58 -0700
committerMarc Jones <marcj303@gmail.com>2012-02-29 20:08:41 +0100
commitb99bc43ee0893651ec81e6e3aabecae9d361be98 (patch)
tree0b3d046e6c6d2a3f8ffaf82dab7c800d336aaf2d
parent399fcdd40d24e7f6fed80e5e1493c900be2b3772 (diff)
tint requires more heap space for PDCurses.
tint was failing with the message "initscr(): Unable to create curscr." tint uses the initscr() to enable vga windows, which allocates more heap space with PDCurses than with tinycurses. Expanding the heap from 16KB to 64KB resolves the issue. Change-Id: I1d38651e2b77f55613969c29614fb3b2be38a00c Signed-off-by: Marc Jones <marc.jones@se-eng.com> Reviewed-on: http://review.coreboot.org/687 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-by: Jonathan A. Kollasch <jakllsch@kollasch.net> Reviewed-by: Marc Jones <marcj303@gmail.com>
-rw-r--r--payloads/libpayload/lib/libpayload.ldscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/libpayload/lib/libpayload.ldscript b/payloads/libpayload/lib/libpayload.ldscript
index 830a39081e..4925e8681a 100644
--- a/payloads/libpayload/lib/libpayload.ldscript
+++ b/payloads/libpayload/lib/libpayload.ldscript
@@ -34,7 +34,7 @@ OUTPUT_ARCH(i386)
ENTRY(_entry)
-HEAP_SIZE = 16384;
+HEAP_SIZE = 65536;
STACK_SIZE = 16384;
SECTIONS