Kconfig (d1e183c8dd38bfdd07e38a79577fe78124e63ab1) | Kconfig (ee89bd6bc73d1d14555418a2642172448052f1dd) |
---|---|
1# 2# Video configuration 3# 4 5menu "Console display driver support" 6 7config VGA_CONSOLE 8 bool "VGA text console" if EXPERT || !X86 --- 120 unchanged lines hidden (view full) --- 129 depends on PARISC 130 select FONT_SUPPORT 131 default y 132 help 133 The STI console is the builtin display/keyboard on HP-PARISC 134 machines. Say Y here to build support for it into your kernel. 135 The alternative is to use your primary serial port as a console. 136 | 1# 2# Video configuration 3# 4 5menu "Console display driver support" 6 7config VGA_CONSOLE 8 bool "VGA text console" if EXPERT || !X86 --- 120 unchanged lines hidden (view full) --- 129 depends on PARISC 130 select FONT_SUPPORT 131 default y 132 help 133 The STI console is the builtin display/keyboard on HP-PARISC 134 machines. Say Y here to build support for it into your kernel. 135 The alternative is to use your primary serial port as a console. 136 |
137config FONT_SUPPORT 138 tristate 139 140if FONT_SUPPORT 141 142config FONTS 143 bool "Select compiled-in fonts" 144 depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE 145 help 146 Say Y here if you would like to use fonts other than the default 147 your frame buffer console usually use. 148 149 Note that the answer to this question won't directly affect the 150 kernel: saying N will just cause the configurator to skip all 151 the questions about foreign fonts. 152 153 If unsure, say N (the default choices are safe). 154 155config FONT_8x8 156 bool "VGA 8x8 font" if FONTS 157 depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE 158 default y if !SPARC && !FONTS 159 help 160 This is the "high resolution" font for the VGA frame buffer (the one 161 provided by the text console 80x50 (and higher) modes). 162 163 Note that this is a poor quality font. The VGA 8x16 font is quite a 164 lot more readable. 165 166 Given the resolution provided by the frame buffer device, answer N 167 here is safe. 168 169config FONT_8x16 170 bool "VGA 8x16 font" if FONTS 171 default y if !SPARC && !FONTS 172 help 173 This is the "high resolution" font for the VGA frame buffer (the one 174 provided by the VGA text console 80x25 mode. 175 176 If unsure, say Y. 177 178config FONT_6x11 179 bool "Mac console 6x11 font (not supported by all drivers)" if FONTS 180 depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE 181 default y if !SPARC && !FONTS && MAC 182 help 183 Small console font with Macintosh-style high-half glyphs. Some Mac 184 framebuffer drivers don't support this one at all. 185 186config FONT_7x14 187 bool "console 7x14 font (not supported by all drivers)" if FONTS 188 depends on FRAMEBUFFER_CONSOLE 189 help 190 Console font with characters just a bit smaller than the default. 191 If the standard 8x16 font is a little too big for you, say Y. 192 Otherwise, say N. 193 194config FONT_PEARL_8x8 195 bool "Pearl (old m68k) console 8x8 font" if FONTS 196 depends on FRAMEBUFFER_CONSOLE 197 default y if !SPARC && !FONTS && AMIGA 198 help 199 Small console font with PC-style control-character and high-half 200 glyphs. 201 202config FONT_ACORN_8x8 203 bool "Acorn console 8x8 font" if FONTS 204 depends on FRAMEBUFFER_CONSOLE 205 default y if !SPARC && !FONTS && ARM && ARCH_ACORN 206 help 207 Small console font with PC-style control characters and high-half 208 glyphs. 209 210config FONT_MINI_4x6 211 bool "Mini 4x6 font" 212 depends on !SPARC && FONTS 213 214config FONT_SUN8x16 215 bool "Sparc console 8x16 font" 216 depends on FRAMEBUFFER_CONSOLE && (!SPARC && FONTS || SPARC) 217 help 218 This is the high resolution console font for Sun machines. Say Y. 219 220config FONT_SUN12x22 221 bool "Sparc console 12x22 font (not supported by all drivers)" 222 depends on FRAMEBUFFER_CONSOLE && (!SPARC && FONTS || SPARC) 223 help 224 This is the high resolution console font for Sun machines with very 225 big letters (like the letters used in the SPARC PROM). If the 226 standard font is unreadable for you, say Y, otherwise say N. 227 228config FONT_10x18 229 bool "console 10x18 font (not supported by all drivers)" if FONTS 230 depends on FRAMEBUFFER_CONSOLE 231 help 232 This is a high resolution console font for machines with very 233 big letters. It fits between the sun 12x22 and the normal 8x16 font. 234 If other fonts are too big or too small for you, say Y, otherwise say N. 235 236config FONT_AUTOSELECT 237 def_bool y 238 depends on !FONT_8x8 239 depends on !FONT_6x11 240 depends on !FONT_7x14 241 depends on !FONT_PEARL_8x8 242 depends on !FONT_ACORN_8x8 243 depends on !FONT_MINI_4x6 244 depends on !FONT_SUN8x16 245 depends on !FONT_SUN12x22 246 depends on !FONT_10x18 247 select FONT_8x16 248 249endif # FONT_SUPPORT 250 | |
251endmenu 252 | 137endmenu 138 |