diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-13 14:02:59 -0600 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-13 14:03:21 -0600 |
commit | f2db24cf88bd4edbc2ec71483090e6d96663b9e1 (patch) | |
tree | d9db1000a7891bed522b1e9d557deab9206fa77c | |
parent | 9b99c58e75682f67ba457ffd49765d8fede62339 (diff) |
do not blank console even on non quiet kernel boots
-rw-r--r-- | target/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/Makefile b/target/Makefile index 5d4be6f74..3a90413ea 100644 --- a/target/Makefile +++ b/target/Makefile @@ -41,7 +41,7 @@ ifneq ($(ADK_RUNTIME_CONSOLE_SERIAL_DEVICE),) $(BUILD_DIR)/.kernelconfig.board endif ifneq ($(ADK_RUNTIME_CONSOLE_VGA_DEVICE),) - $(SED) 's#^\(CONFIG_.*CMDLINE="\)\(.*\)"#\1\2 console=$(ADK_RUNTIME_CONSOLE_VGA_DEVICE)"#' \ + $(SED) 's#^\(CONFIG_.*CMDLINE="\)\(.*\)"#\1\2 console=$(ADK_RUNTIME_CONSOLE_VGA_DEVICE)" consoleblank=0#' \ $(BUILD_DIR)/.kernelconfig.board endif ifeq ($(ADK_TARGET_SYSTEM_QEMU_M68K),y) @@ -71,7 +71,7 @@ ifeq ($(ADK_RUNTIME_QUIET_INIT),y) $(BUILD_DIR)/.kernelconfig.board endif ifeq ($(ADK_QUIET_KERNEL),y) - @$(SED) 's#^\(CONFIG_.*CMDLINE="\)\(.*\)"#\1\2 quiet loglevel=2 consoleblank=0 vt.global_cursor_default=0"#' \ + @$(SED) 's#^\(CONFIG_.*CMDLINE="\)\(.*\)"#\1\2 quiet loglevel=2 vt.global_cursor_default=0"#' \ $(BUILD_DIR)/.kernelconfig.board endif ifeq ($(ADK_KERNEL_DEBUG_WITH_KGDB),y) |