Kconfig 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. #
  2. # Video configuration
  3. #
  4. menu "Console display driver support"
  5. config VGA_CONSOLE
  6. bool "VGA text console" if EMBEDDED || !X86
  7. depends on !ARCH_ACORN && !ARCH_EBSA110 && !4xx && !8xx && !SPARC && !M68K && !PARISC && !FRV && !ARCH_VERSATILE
  8. default y
  9. help
  10. Saying Y here will allow you to use Linux in text mode through a
  11. display that complies with the generic VGA standard. Virtually
  12. everyone wants that.
  13. The program SVGATextMode can be used to utilize SVGA video cards to
  14. their full potential in text mode. Download it from
  15. <ftp://ibiblio.org/pub/Linux/utils/console/>.
  16. Say Y.
  17. # if [ "$CONFIG_PCI" = "y" -a "$CONFIG_VGA_CONSOLE" = "y" ]; then
  18. # bool ' Allow VGA on any bus?' CONFIG_VGA_HOSE
  19. # if [ "$CONFIG_VGA_HOSE" = "y" ]; then
  20. # define_bool CONFIG_DUMMY_CONSOLE y
  21. # fi
  22. # fi
  23. config VIDEO_SELECT
  24. bool "Video mode selection support"
  25. depends on X86 && VGA_CONSOLE
  26. ---help---
  27. This enables support for text mode selection on kernel startup. If
  28. you want to take advantage of some high-resolution text mode your
  29. card's BIOS offers, but the traditional Linux utilities like
  30. SVGATextMode don't, you can say Y here and set the mode using the
  31. "vga=" option from your boot loader (lilo or loadlin) or set
  32. "vga=ask" which brings up a video mode menu on kernel startup. (Try
  33. "man bootparam" or see the documentation of your boot loader about
  34. how to pass options to the kernel.)
  35. Read the file <file:Documentation/svga.txt> for more information
  36. about the Video mode selection support. If unsure, say N.
  37. config MDA_CONSOLE
  38. depends on !M68K && !PARISC && ISA
  39. tristate "MDA text console (dual-headed) (EXPERIMENTAL)"
  40. ---help---
  41. Say Y here if you have an old MDA or monochrome Hercules graphics
  42. adapter in your system acting as a second head ( = video card). You
  43. will then be able to use two monitors with your Linux system. Do not
  44. say Y here if your MDA card is the primary card in your system; the
  45. normal VGA driver will handle it.
  46. To compile this driver as a module, choose M here: the
  47. module will be called mdacon.
  48. If unsure, say N.
  49. config SGI_NEWPORT_CONSOLE
  50. tristate "SGI Newport Console support"
  51. depends on SGI_IP22
  52. help
  53. Say Y here if you want the console on the Newport aka XL graphics
  54. card of your Indy. Most people say Y here.
  55. # bool 'IODC console' CONFIG_IODC_CONSOLE
  56. config PROM_CONSOLE
  57. bool "PROM console"
  58. depends on SPARC
  59. help
  60. Say Y to build a console driver for Sun machines that uses the
  61. terminal emulation built into their console PROMS.
  62. config DUMMY_CONSOLE
  63. bool
  64. depends on PROM_CONSOLE!=y || VGA_CONSOLE!=y || SGI_NEWPORT_CONSOLE!=y
  65. default y
  66. config DUMMY_CONSOLE_COLUMNS
  67. int "Initial number of console screen columns"
  68. depends on PARISC && DUMMY_CONSOLE
  69. default "160"
  70. help
  71. The default value is 160, which should fit a 1280x1024 monitor.
  72. Select 80 if you use a 640x480 resolution by default.
  73. config DUMMY_CONSOLE_ROWS
  74. int "Initial number of console screen rows"
  75. depends on PARISC && DUMMY_CONSOLE
  76. default "64"
  77. help
  78. The default value is 64, which should fit a 1280x1024 monitor.
  79. Select 25 if you use a 640x480 resolution by default.
  80. config FRAMEBUFFER_CONSOLE
  81. tristate "Framebuffer Console support"
  82. depends on FB
  83. select CRC32
  84. help
  85. Low-level framebuffer-based console driver.
  86. config FRAMEBUFFER_CONSOLE_ROTATION
  87. bool "Framebuffer Console Rotation"
  88. depends on FRAMEBUFFER_CONSOLE
  89. help
  90. Enable display rotation for the framebuffer console. This is done
  91. in software and may be significantly slower than a normally oriented
  92. display. Note that the rotation is done at the console level only
  93. such that other users of the framebuffer will remain normally
  94. oriented.
  95. config STI_CONSOLE
  96. tristate "STI text console"
  97. depends on PARISC
  98. default y
  99. help
  100. The STI console is the builtin display/keyboard on HP-PARISC
  101. machines. Say Y here to build support for it into your kernel.
  102. The alternative is to use your primary serial port as a console.
  103. config FONTS
  104. bool "Select compiled-in fonts"
  105. depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE
  106. help
  107. Say Y here if you would like to use fonts other than the default
  108. your frame buffer console usually use.
  109. Note that the answer to this question won't directly affect the
  110. kernel: saying N will just cause the configurator to skip all
  111. the questions about foreign fonts.
  112. If unsure, say N (the default choices are safe).
  113. config FONT_8x8
  114. bool "VGA 8x8 font" if FONTS
  115. depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE
  116. default y if !SPARC && !FONTS
  117. help
  118. This is the "high resolution" font for the VGA frame buffer (the one
  119. provided by the text console 80x50 (and higher) modes).
  120. Note that this is a poor quality font. The VGA 8x16 font is quite a
  121. lot more readable.
  122. Given the resolution provided by the frame buffer device, answer N
  123. here is safe.
  124. config FONT_8x16
  125. bool "VGA 8x16 font" if FONTS
  126. depends on FRAMEBUFFER_CONSOLE || SGI_NEWPORT_CONSOLE=y || STI_CONSOLE || USB_SISUSBVGA_CON
  127. default y if !SPARC && !FONTS
  128. help
  129. This is the "high resolution" font for the VGA frame buffer (the one
  130. provided by the VGA text console 80x25 mode.
  131. If unsure, say Y.
  132. config FONT_6x11
  133. bool "Mac console 6x11 font (not supported by all drivers)" if FONTS
  134. depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE
  135. default y if !SPARC && !FONTS && MAC
  136. help
  137. Small console font with Macintosh-style high-half glyphs. Some Mac
  138. framebuffer drivers don't support this one at all.
  139. config FONT_7x14
  140. bool "console 7x14 font (not supported by all drivers)" if FONTS
  141. depends on FRAMEBUFFER_CONSOLE
  142. help
  143. Console font with characters just a bit smaller than the default.
  144. If the standard 8x16 font is a little too big for you, say Y.
  145. Otherwise, say N.
  146. config FONT_PEARL_8x8
  147. bool "Pearl (old m68k) console 8x8 font" if FONTS
  148. depends on FRAMEBUFFER_CONSOLE
  149. default y if !SPARC && !FONTS && AMIGA
  150. help
  151. Small console font with PC-style control-character and high-half
  152. glyphs.
  153. config FONT_ACORN_8x8
  154. bool "Acorn console 8x8 font" if FONTS
  155. depends on FRAMEBUFFER_CONSOLE
  156. default y if !SPARC && !FONTS && ARM && ARCH_ACORN
  157. help
  158. Small console font with PC-style control characters and high-half
  159. glyphs.
  160. config FONT_MINI_4x6
  161. bool "Mini 4x6 font"
  162. depends on !SPARC && FONTS
  163. config FONT_SUN8x16
  164. bool "Sparc console 8x16 font"
  165. depends on FRAMEBUFFER_CONSOLE && (!SPARC && FONTS || SPARC)
  166. help
  167. This is the high resolution console font for Sun machines. Say Y.
  168. config FONT_SUN12x22
  169. bool "Sparc console 12x22 font (not supported by all drivers)"
  170. depends on FRAMEBUFFER_CONSOLE && (!SPARC && FONTS || SPARC)
  171. help
  172. This is the high resolution console font for Sun machines with very
  173. big letters (like the letters used in the SPARC PROM). If the
  174. standard font is unreadable for you, say Y, otherwise say N.
  175. config FONT_10x18
  176. bool "console 10x18 font (not supported by all drivers)" if FONTS
  177. depends on FRAMEBUFFER_CONSOLE
  178. help
  179. This is a high resolution console font for machines with very
  180. big letters. It fits between the sun 12x22 and the normal 8x16 font.
  181. If other fonts are too big or too small for you, say Y, otherwise say N.
  182. endmenu