diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-06 14:37:04 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-06 14:37:04 +0200 |
commit | ae8890e6574795fdc22f95e6410c6cba6e7b5a4e (patch) | |
tree | d7ab913272f67c5a4f050ccafa2d26ab520f5aa7 /target/config/Config.in.runtime | |
parent | ec7e1c28df5bbb5b45540034d77fd2ff690f39f2 (diff) |
allow output from initscripts to serial
Diffstat (limited to 'target/config/Config.in.runtime')
-rw-r--r-- | target/config/Config.in.runtime | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/target/config/Config.in.runtime b/target/config/Config.in.runtime index 5a02ec0e5..5d27b6e0d 100644 --- a/target/config/Config.in.runtime +++ b/target/config/Config.in.runtime @@ -46,6 +46,23 @@ config ADK_RUNTIME_TIMEZONE Predefine the timezone for the embedded system. choice +prompt "Enable verbose bootup messages from initscripts" +default ADK_RUNTIME_VERBOSE_INIT_VGA if ADK_TARGET_WITH_VGA +default ADK_RUNTIME_VERBOSE_INIT_SERIAL + +config ADK_RUNTIME_VERBOSE_INIT_VGA + depends on ADK_TARGET_WITH_VGA + boolean "output via VGA" + +config ADK_RUNTIME_VERBOSE_INIT_SERIAL + boolean "output via serial" + +config ADK_RUNTIME_QUIET_INIT + boolean "no output" + +endchoice + +choice prompt "Start getty or shell after bootup" default ADK_RUNTIME_SHELL if ADK_PKG_TEST default ADK_RUNTIME_GETTY |