Vladimir Serbinenko (phcoder@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6902
-gerrit
commit 874235900a6d14897e5838f4120f30f8a3ff0246 Author: Vladimir Serbinenko phcoder@gmail.com Date: Sat Sep 13 20:55:58 2014 +0200
cbmemc: Bump default to 128K
board_status shows that truncation of few KiB is pretty common. So bump this value.
Change-Id: I78a16974846a59ee4eae782380e6d01d2fa324f2 Signed-off-by: Vladimir Serbinenko phcoder@gmail.com --- src/console/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/console/Kconfig b/src/console/Kconfig index c7c3ea5..f5528ed 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -177,10 +177,10 @@ config CONSOLE_CBMEM config CONSOLE_CBMEM_BUFFER_SIZE depends on CONSOLE_CBMEM hex "Room allocated for console output in CBMEM" - default 0x10000 + default 0x20000 help Space allocated for console output storage in CBMEM. The default - value (64K or 0x10000 bytes) is large enough to accommodate + value (128K or 0x20000 bytes) is large enough to accommodate even the BIOS_SPEW level.
config CONSOLE_CAR_BUFFER_SIZE