diff options
author | Johannes Berg <johannes.berg@intel.com> | 2021-03-05 13:19:51 +0100 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2021-06-17 21:44:50 +0200 |
commit | 0bbadafdc49d11a1836e5946f517d18cceaea6c8 (patch) | |
tree | ec7d81b3235f900c9e508638db2c29d9807f25d8 /drivers/tty/Kconfig | |
parent | 009c9aa5be652675a06d5211e1640e02bbb1c33d (diff) | |
download | lwn-0bbadafdc49d11a1836e5946f517d18cceaea6c8.tar.gz lwn-0bbadafdc49d11a1836e5946f517d18cceaea6c8.zip |
um: allow disabling NO_IOMEM
Adjust the kconfig a little to allow disabling NO_IOMEM in UML. To
make an "allyesconfig" with CONFIG_NO_IOMEM=n build, adjust a few
Kconfig things elsewhere and add dummy asm/fb.h and asm/vga.h files.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'drivers/tty/Kconfig')
-rw-r--r-- | drivers/tty/Kconfig | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/tty/Kconfig b/drivers/tty/Kconfig index f6a7fd6d3bb6..5b0736fae70b 100644 --- a/drivers/tty/Kconfig +++ b/drivers/tty/Kconfig @@ -12,9 +12,8 @@ if TTY config VT bool "Virtual terminal" if EXPERT - depends on !UML select INPUT - default y + default y if !UML help If you say Y here, you will get support for terminal devices with display and keyboard devices. These are called "virtual" because you @@ -78,7 +77,7 @@ config VT_CONSOLE_SLEEP config HW_CONSOLE bool - depends on VT && !UML + depends on VT default y config VT_HW_CONSOLE_BINDING |