summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2023-10-26 14:31:18 -0400
committerTom Rini <[email protected]>2023-11-07 14:48:51 -0500
commitd83f4e626597ade57e14f6a1edf65515ca6204bc (patch)
tree08c66eee71de535632fff30f635a64378ccef9e1 /cmd
parent8b888917cae16e690ca0bda68dbcfae62928935d (diff)
video: Don't require the font command
While it is nice to have the font command, using 'select' makes it impossible to build the console code without it. Stop using 'select' and make it default if CONSOLE_TRUETYPE is enabled when asking the command. Signed-off-by: Simon Glass <[email protected]> Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 5a9346f776a..0ad56f6782f 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -2358,6 +2358,7 @@ config CMD_VIDCONSOLE
config CMD_SELECT_FONT
bool "select font size"
depends on VIDEO
+ default y if CONSOLE_TRUETYPE
help
Enabling this will provide 'font' command.
Allows font selection at runtime.