aboutsummaryrefslogtreecommitdiff
path: root/payloads/libpayload/Config.in
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2012-10-05 11:43:39 -0700
committerAnton Kochkov <anton.kochkov@gmail.com>2012-11-09 22:55:38 +0100
commit4bb0731a7beaada481371fb19117cdf9f62f5f23 (patch)
treedfe3edcf5a1d5f06315c2bb3cb90a83a3eaa8e74 /payloads/libpayload/Config.in
parentd94512edee3fa0ebf426cd6f3b526d9fe1f078ad (diff)
libpayload: Add an option to skip console initialization on startup.
A payload may want to decide whether it uses certain input/output consoles, or that it wants support for outputing to a particular device but not to use that device as a console. This change adds a config option which skips the call to console_init in start_main. Change-Id: I32b224d4d0bd3a239b402ecb09ee907d53225735 Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: http://review.coreboot.org/1732 Tested-by: build bot (Jenkins) Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
Diffstat (limited to 'payloads/libpayload/Config.in')
-rw-r--r--payloads/libpayload/Config.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/payloads/libpayload/Config.in b/payloads/libpayload/Config.in
index 90a22ff523..65be223068 100644
--- a/payloads/libpayload/Config.in
+++ b/payloads/libpayload/Config.in
@@ -147,6 +147,14 @@ endmenu
menu "Console Options"
+config SKIP_CONSOLE_INIT
+ bool "Skip initializing the consoles at startup"
+ default n
+ help
+ Normally, libpayload will initialize console input/output on startup
+ before the payload itself gets control. This option disables that
+ behavior and leaves console initialization up to the payload.
+
config CBMEM_CONSOLE
bool "Send output to the in memory CBMEM console"
default y