mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
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 <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
8b888917ca
commit
d83f4e6265
2 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue