Kconfig 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. #
  2. # Font configuration
  3. #
  4. config FONT_SUPPORT
  5. tristate
  6. if FONT_SUPPORT
  7. config FONTS
  8. bool "Select compiled-in fonts"
  9. depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE
  10. help
  11. Say Y here if you would like to use fonts other than the default
  12. your frame buffer console usually use.
  13. Note that the answer to this question won't directly affect the
  14. kernel: saying N will just cause the configurator to skip all
  15. the questions about foreign fonts.
  16. If unsure, say N (the default choices are safe).
  17. config FONT_8x8
  18. bool "VGA 8x8 font" if FONTS
  19. depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE
  20. default y if !SPARC && !FONTS
  21. help
  22. This is the "high resolution" font for the VGA frame buffer (the one
  23. provided by the text console 80x50 (and higher) modes).
  24. Note that this is a poor quality font. The VGA 8x16 font is quite a
  25. lot more readable.
  26. Given the resolution provided by the frame buffer device, answer N
  27. here is safe.
  28. config FONT_8x16
  29. bool "VGA 8x16 font" if FONTS
  30. default y if !SPARC && !FONTS
  31. help
  32. This is the "high resolution" font for the VGA frame buffer (the one
  33. provided by the VGA text console 80x25 mode.
  34. If unsure, say Y.
  35. config FONT_6x11
  36. bool "Mac console 6x11 font (not supported by all drivers)" if FONTS
  37. depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE
  38. default y if !SPARC && !FONTS && MAC
  39. help
  40. Small console font with Macintosh-style high-half glyphs. Some Mac
  41. framebuffer drivers don't support this one at all.
  42. config FONT_7x14
  43. bool "console 7x14 font (not supported by all drivers)" if FONTS
  44. depends on FRAMEBUFFER_CONSOLE
  45. help
  46. Console font with characters just a bit smaller than the default.
  47. If the standard 8x16 font is a little too big for you, say Y.
  48. Otherwise, say N.
  49. config FONT_PEARL_8x8
  50. bool "Pearl (old m68k) console 8x8 font" if FONTS
  51. depends on FRAMEBUFFER_CONSOLE
  52. default y if !SPARC && !FONTS && AMIGA
  53. help
  54. Small console font with PC-style control-character and high-half
  55. glyphs.
  56. config FONT_ACORN_8x8
  57. bool "Acorn console 8x8 font" if FONTS
  58. depends on FRAMEBUFFER_CONSOLE
  59. default y if !SPARC && !FONTS && ARM && ARCH_ACORN
  60. help
  61. Small console font with PC-style control characters and high-half
  62. glyphs.
  63. config FONT_MINI_4x6
  64. bool "Mini 4x6 font"
  65. depends on !SPARC && FONTS
  66. config FONT_6x10
  67. bool "Medium-size 6x10 font"
  68. depends on !SPARC && FONTS
  69. help
  70. Medium-size console font. Suitable for framebuffer consoles on
  71. embedded devices with a 320x240 screen, to get a reasonable number
  72. of characters (53x24) that are still at a readable size.
  73. config FONT_SUN8x16
  74. bool "Sparc console 8x16 font"
  75. depends on FRAMEBUFFER_CONSOLE && (!SPARC && FONTS || SPARC)
  76. help
  77. This is the high resolution console font for Sun machines. Say Y.
  78. config FONT_SUN12x22
  79. bool "Sparc console 12x22 font (not supported by all drivers)"
  80. depends on FRAMEBUFFER_CONSOLE && (!SPARC && FONTS || SPARC)
  81. help
  82. This is the high resolution console font for Sun machines with very
  83. big letters (like the letters used in the SPARC PROM). If the
  84. standard font is unreadable for you, say Y, otherwise say N.
  85. config FONT_10x18
  86. bool "console 10x18 font (not supported by all drivers)" if FONTS
  87. depends on FRAMEBUFFER_CONSOLE
  88. help
  89. This is a high resolution console font for machines with very
  90. big letters. It fits between the sun 12x22 and the normal 8x16 font.
  91. If other fonts are too big or too small for you, say Y, otherwise say N.
  92. config FONT_AUTOSELECT
  93. def_bool y
  94. depends on !FONT_8x8
  95. depends on !FONT_6x11
  96. depends on !FONT_7x14
  97. depends on !FONT_PEARL_8x8
  98. depends on !FONT_ACORN_8x8
  99. depends on !FONT_MINI_4x6
  100. depends on !FONT_6x10
  101. depends on !FONT_SUN8x16
  102. depends on !FONT_SUN12x22
  103. depends on !FONT_10x18
  104. select FONT_8x16
  105. endif # FONT_SUPPORT