summaryrefslogtreecommitdiffstats
path: root/lib/fonts/Kconfig
blob: 3cd8d7698b3baa93663dbbb98ac4b02ada193816 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# Font configuration
#

config FONTS
	bool "Select compiled-in fonts"
	depends on FRAMEBUFFER_CONSOLE

if FONTS

config FONT_8x16
	bool "VGA 8x16 font"
	help
	  This is the "high resolution" font for the VGA frame buffer (the one
	  provided by the VGA text console 80x25 mode).

config FONT_8x8
	bool "VGA 8x8 font"

config FONT_7x14
	bool "7x14 font"

config FONT_MINI_4x6
	bool "Mini 4x6 font"

config FONT_CUSTOM_16X
	bool "Custom 16x16 font"
	help
	  This font is useful for Chinese and other non ascii chars.

config FONT_AUTOSELECT
	def_bool y
	depends on !FONT_MINI_8x8
	depends on !FONT_MINI_4x6
	depends on !FONT_7x14
	select FONT_8x16

endif # FONTS