mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
430e1676a7
Add a new 'font' command which allows the fonts to be listed as well as selecting a different font and size. Allow the test to run on sandbox, where multiple font/size combinations are supported, as well as sandbox_flattree, where they are not. Signed-off-by: Simon Glass <sjg@chromium.org>
52 lines
773 B
ReStructuredText
52 lines
773 B
ReStructuredText
.. SPDX-License-Identifier: GPL-2.0+:
|
|
|
|
font command
|
|
============
|
|
|
|
Synopis
|
|
-------
|
|
|
|
::
|
|
|
|
font list
|
|
font select <name> [<size>]
|
|
font size <size>
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
The *font* command allows selection of the font to use on the video console.
|
|
This is available when the Truetype console is in use. This is the case when
|
|
`CONFIG_CONSOLE_TRUETYPE` is enabled.
|
|
|
|
|
|
font list
|
|
~~~~~~~~~
|
|
|
|
This lists the available fonts, using the name of the font file in the build.
|
|
|
|
|
|
font select
|
|
~~~~~~~~~~~
|
|
|
|
This selects a new font and optionally changes the size.
|
|
|
|
|
|
font size
|
|
~~~~~~~~~
|
|
|
|
This changes the font size only.
|
|
|
|
|
|
Examples
|
|
--------
|
|
|
|
::
|
|
|
|
=> font list
|
|
nimbus_sans_l_regular
|
|
cantoraone_regular
|
|
=> font size 40
|
|
=> font select cantoraone_regular 20
|
|
=>
|