summaryrefslogtreecommitdiffstats
path: root/lib/fonts/Kconfig
blob: 715d5e5bbd87254b44844aaa0453fb7a9d711926 (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
#
# 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_7x14
	bool "7x14 font"

config FONT_MINI_4x6
	bool "Mini 4x6 font"

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

endif # FONTS