]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
video: Don't require the font command
authorSimon Glass <sjg@chromium.org>
Thu, 26 Oct 2023 18:31:18 +0000 (14:31 -0400)
committerTom Rini <trini@konsulko.com>
Tue, 7 Nov 2023 19:48:51 +0000 (14:48 -0500)
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 <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
cmd/Kconfig
drivers/video/Kconfig

index 5a9346f776acffd60be5f38548421088df4809fb..0ad56f6782fc1f1213666c50a83041bee930eac4 100644 (file)
@@ -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.
index ab927641bb7ab948d6ddd701483201dfcc473cb1..6f319ba0d544efa45b18e5871e4a1ddd08b448ff 100644 (file)
@@ -180,7 +180,6 @@ config CONSOLE_ROTATION
 
 config CONSOLE_TRUETYPE
        bool "Support a console that uses TrueType fonts"
-       select CMD_SELECT_FONT
        help
          TrueTrype fonts can provide outline-drawing capability rather than
          needing to provide a bitmap for each font and size that is needed.