libpayload: increase the default heap size
Coreinfo uses the default heap size and will blow up if the USB keyboard is used. Change-Id: I2ffae330ec34167b2ccfbd4c428e3e8306230f44 Signed-off-by: Dave Frodin <dave.frodin@se-eng.com> Reviewed-on: http://review.coreboot.org/1980 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Marc Jones <marcj303@gmail.com>
This commit is contained in:
parent
15a2c8f827
commit
0b97f2978f
|
@ -34,7 +34,7 @@ OUTPUT_ARCH(i386)
|
|||
|
||||
ENTRY(_entry)
|
||||
|
||||
HEAP_SIZE = 65536;
|
||||
HEAP_SIZE = 2*64*1024;
|
||||
STACK_SIZE = 16384;
|
||||
|
||||
SECTIONS
|
||||
|
|
Loading…
Reference in New Issue