diff options
| author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2003-07-31 05:15:05 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-07-31 05:15:05 -0700 |
| commit | eda30c2b338cdc099951f45eb45d1ce7055706e3 (patch) | |
| tree | ae3c12ff7ad217fad3692a8543889f5f90561de3 | |
| parent | b71ac811b955e2545cb287a8a5ac38846f9cd5b7 (diff) | |
[PATCH] console on by default if not embedded (save mucho pain)
(Andi Kleen)
| -rw-r--r-- | drivers/char/Kconfig | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index f0ce5d7473ad..d16c54b65102 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -5,8 +5,9 @@ menu "Character devices" config VT - bool "Virtual terminal" + bool "Virtual terminal" if EMBEDDED requires INPUT=y + default y ---help--- If you say Y here, you will get support for terminal devices with display and keyboard devices. These are called "virtual" because you @@ -35,8 +36,9 @@ config VT shiny Linux system :-) config VT_CONSOLE - bool "Support for console on virtual terminal" + bool "Support for console on virtual terminal" if EMBEDDED depends on VT + default y ---help--- The system console is the device which receives all kernel messages and warnings and which allows logins in single user mode. If you |
