hc
2023-12-09 95099d4622f8cb224d94e314c7a8e0df60b13f87
kernel/lib/fonts/Kconfig
....@@ -1,3 +1,4 @@
1
+# SPDX-License-Identifier: GPL-2.0-only
12 #
23 # Font configuration
34 #
....@@ -109,6 +110,21 @@
109110 big letters (like the letters used in the SPARC PROM). If the
110111 standard font is unreadable for you, say Y, otherwise say N.
111112
113
+config FONT_TER16x32
114
+ bool "Terminus 16x32 font (not supported by all drivers)"
115
+ depends on FRAMEBUFFER_CONSOLE && (!SPARC && FONTS || SPARC)
116
+ help
117
+ Terminus Font is a clean, fixed width bitmap font, designed
118
+ for long (8 and more hours per day) work with computers.
119
+ This is the high resolution, large version for use with HiDPI screens.
120
+ If the standard font is unreadable for you, say Y, otherwise say N.
121
+
122
+config FONT_6x8
123
+ bool "OLED 6x8 font" if FONTS
124
+ depends on FRAMEBUFFER_CONSOLE
125
+ help
126
+ This font is useful for small displays (OLED).
127
+
112128 config FONT_AUTOSELECT
113129 def_bool y
114130 depends on !FONT_8x8
....@@ -121,6 +137,8 @@
121137 depends on !FONT_SUN8x16
122138 depends on !FONT_SUN12x22
123139 depends on !FONT_10x18
140
+ depends on !FONT_TER16x32
141
+ depends on !FONT_6x8
124142 select FONT_8x16
125143
126144 endif # FONT_SUPPORT