diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2014-03-08 10:46:52 +0100 |
---|---|---|
committer | Marc Jones <marc.jones@se-eng.com> | 2015-03-10 23:42:22 +0100 |
commit | 60ef456f46d81faa4f15b8a49b39037037b8b643 (patch) | |
tree | 579f9cb4fede96c3bebac88a79cba5e66212104c | |
parent | 9e94dbfcd089db31b2201381f9d83a89cdea86b9 (diff) |
console/Kconfig: Enable CBMEM console by default
Currently on AMD boards no romstage messages can be saved in CBMEM, so
only messages from ramstage on will be stored in CBMEM. Other than
that nothing changes.
Enabling CBMEM console by default does not noticeably decrease boot
time as the messages are directly written to CAR or RAM.
The board status script under `util/board_status/` reads the coreboot
messages from CBMEM, which are then uploaded to the board status
repository. With CBMEM console disabled by default, currently no
coreboot console messages are uploaded to the board status repository,
although it is important to have those.
Enabling CBMEM console by default improves this situation, so that for
all boards at least ramstage messages are stored in the board status
repository.
Change-Id: I8d5a58c078325c43a0317bcfaafc722d039aab0b
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/5350
Reviewed-by: Aaron Durbin <adurbin@google.com>
Tested-by: build bot (Jenkins)
-rw-r--r-- | src/console/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/Kconfig b/src/console/Kconfig index 26e0866ffe..e686506c45 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -169,7 +169,7 @@ config CONSOLE_NE2K_IO_PORT config CONSOLE_CBMEM bool "Send console output to a CBMEM buffer" - default n + default y help Enable this to save the console output in a CBMEM buffer. This would allow to see coreboot console output from Linux space. |