mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 11:56:58 +00:00
Add a compile-in option for Terminus 10x18 bitmap console font to improve readability on modern laptop displays. On modern 13-16 inch laptop displays with high pixel density, common scaled resolutions like 1280x800 and 1440x900 are widely used. At these resolutions, VGA 8x16 is too small and difficult to read for extended periods, while Terminus 16x32 is too large, providing only 25-28 rows. The existing 10x18 font has poor readability. Terminus 10x18 provides improved readability with its clean, fixed-width design while maintaining practical row counts (44-50 rows). A comfortable and readable built-in font for early boot messages, kernel panics or whenever userspace is unavailable. The font was converted from standard Terminus ter-i18b.psf using psftools and formatted to match kernel font conventions. This patch is non-intrusive, no options are enabled by default so most users won't notice a thing. Signed-off-by: Neilay Kharwadkar <neilaykharwadkar@gmail.com> Signed-off-by: Helge Deller <deller@gmx.de>
24 lines
877 B
Makefile
24 lines
877 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Font handling
|
|
|
|
font-objs := fonts.o
|
|
|
|
font-objs-$(CONFIG_FONT_SUN8x16) += font_sun8x16.o
|
|
font-objs-$(CONFIG_FONT_SUN12x22) += font_sun12x22.o
|
|
font-objs-$(CONFIG_FONT_8x8) += font_8x8.o
|
|
font-objs-$(CONFIG_FONT_8x16) += font_8x16.o
|
|
font-objs-$(CONFIG_FONT_6x11) += font_6x11.o
|
|
font-objs-$(CONFIG_FONT_7x14) += font_7x14.o
|
|
font-objs-$(CONFIG_FONT_10x18) += font_10x18.o
|
|
font-objs-$(CONFIG_FONT_PEARL_8x8) += font_pearl_8x8.o
|
|
font-objs-$(CONFIG_FONT_ACORN_8x8) += font_acorn_8x8.o
|
|
font-objs-$(CONFIG_FONT_MINI_4x6) += font_mini_4x6.o
|
|
font-objs-$(CONFIG_FONT_6x10) += font_6x10.o
|
|
font-objs-$(CONFIG_FONT_TER10x18) += font_ter10x18.o
|
|
font-objs-$(CONFIG_FONT_TER16x32) += font_ter16x32.o
|
|
font-objs-$(CONFIG_FONT_6x8) += font_6x8.o
|
|
|
|
font-objs += $(font-objs-y)
|
|
|
|
obj-$(CONFIG_FONT_SUPPORT) += font.o
|