diff options
| author | Alexey Charkov <[email protected]> | 2026-05-12 23:31:50 +0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-05-30 07:44:08 -0600 |
| commit | 5cf4b1428485048bed4b53ed600c17bae016dd8c (patch) | |
| tree | 678cecdd05ab5628298618d29fb73802b83f6876 /drivers | |
| parent | 5f5b8ae2938380babe1843fba4aebc299b811ab8 (diff) | |
video console: add 6x8 console font from linux
Small screens on the order of 256x144 pixels can't fit much text at 8x16,
and 4x6 is virtually illegible, so add an in-between 6x8 font from Linux.
Font data obtained from lib/fonts/font_6x8.c in the Linux kernel at commit
db65872b38dc ("lib/fonts: Remove internal symbols and macros from public
header file")
Link: https://github.com/torvalds/linux/blob/db65872b38dc9f18a62669d6ae1e4ec7868a85a9/lib/fonts/font_6x8.c
Signed-off-by: Alexey Charkov <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/video/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 25475ef8fd7..5a0dfb159c4 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -29,6 +29,13 @@ config VIDEO_FONT_4X6 Provides character bitmap data in header file. When selecting multiple fonts, you may want to enable CMD_SELECT_FONT too. +config VIDEO_FONT_6X8 + bool "6 x 8 font size" + help + Font for video console driver, 6 x 8 pixels. + Provides character bitmap data in header file. + When selecting multiple fonts, you may want to enable CMD_SELECT_FONT too. + config VIDEO_FONT_8X16 bool "8 x 16 font size" default y |
