diff options
author | Arnd Bergmann <arnd@arndb.de> | 2025-02-25 17:44:21 +0100 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2025-03-26 22:39:20 +0100 |
commit | 4027c31db1baaa674e08e972e90d99453a1a66ad (patch) | |
tree | 7d926c259e346d8708bb2c8cab1edf6c7f46eceb | |
parent | 2df2c0caaecfd869b49e14f2b8df822397c5dd7f (diff) |
dummycon: only build module if there are users
Dummycon is used as a fallback conswitchp for vgacon and fbcon
in the VT code, and there are no references to it if all three
are disabled, so just leave it out of the kernel image for
configurations without those.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r-- | drivers/video/console/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/console/Kconfig b/drivers/video/console/Kconfig index bc31db6ef7d2..1c4263c164ce 100644 --- a/drivers/video/console/Kconfig +++ b/drivers/video/console/Kconfig @@ -47,8 +47,7 @@ config SGI_NEWPORT_CONSOLE card of your Indy. Most people say Y here. config DUMMY_CONSOLE - bool - default y + def_bool VT || VGA_CONSOLE || FRAMEBUFFER_CONSOLE config DUMMY_CONSOLE_COLUMNS int "Initial number of console screen columns" |