Kconfig 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. #
  2. # Video configuration
  3. #
  4. menu "Console display driver support"
  5. config VGA_CONSOLE
  6. bool "VGA text console" if EXPERT || !X86
  7. depends on !4xx && !8xx && !SPARC && !M68K && !PARISC && !FRV && \
  8. !SUPERH && !BLACKFIN && !AVR32 && !MN10300 && !CRIS && \
  9. (!ARM || ARCH_FOOTBRIDGE || ARCH_INTEGRATOR || ARCH_NETWINDER)
  10. default y
  11. help
  12. Saying Y here will allow you to use Linux in text mode through a
  13. display that complies with the generic VGA standard. Virtually
  14. everyone wants that.
  15. The program SVGATextMode can be used to utilize SVGA video cards to
  16. their full potential in text mode. Download it from
  17. <ftp://ibiblio.org/pub/Linux/utils/console/>.
  18. Say Y.
  19. config VGACON_SOFT_SCROLLBACK
  20. bool "Enable Scrollback Buffer in System RAM"
  21. depends on VGA_CONSOLE
  22. default n
  23. help
  24. The scrollback buffer of the standard VGA console is located in
  25. the VGA RAM. The size of this RAM is fixed and is quite small.
  26. If you require a larger scrollback buffer, this can be placed in
  27. System RAM which is dynamically allocated during initialization.
  28. Placing the scrollback buffer in System RAM will slightly slow
  29. down the console.
  30. If you want this feature, say 'Y' here and enter the amount of
  31. RAM to allocate for this buffer. If unsure, say 'N'.
  32. config VGACON_SOFT_SCROLLBACK_SIZE
  33. int "Scrollback Buffer Size (in KB)"
  34. depends on VGACON_SOFT_SCROLLBACK
  35. range 1 1024
  36. default "64"
  37. help
  38. Enter the amount of System RAM to allocate for the scrollback
  39. buffer. Each 64KB will give you approximately 16 80x25
  40. screenfuls of scrollback buffer
  41. config MDA_CONSOLE
  42. depends on !M68K && !PARISC && ISA
  43. tristate "MDA text console (dual-headed)"
  44. ---help---
  45. Say Y here if you have an old MDA or monochrome Hercules graphics
  46. adapter in your system acting as a second head ( = video card). You
  47. will then be able to use two monitors with your Linux system. Do not
  48. say Y here if your MDA card is the primary card in your system; the
  49. normal VGA driver will handle it.
  50. To compile this driver as a module, choose M here: the
  51. module will be called mdacon.
  52. If unsure, say N.
  53. config SGI_NEWPORT_CONSOLE
  54. tristate "SGI Newport Console support"
  55. depends on SGI_IP22
  56. select FONT_SUPPORT
  57. help
  58. Say Y here if you want the console on the Newport aka XL graphics
  59. card of your Indy. Most people say Y here.
  60. config DUMMY_CONSOLE
  61. bool
  62. depends on VGA_CONSOLE!=y || SGI_NEWPORT_CONSOLE!=y
  63. default y
  64. config DUMMY_CONSOLE_COLUMNS
  65. int "Initial number of console screen columns"
  66. depends on PARISC && DUMMY_CONSOLE
  67. default "160"
  68. help
  69. The default value is 160, which should fit a 1280x1024 monitor.
  70. Select 80 if you use a 640x480 resolution by default.
  71. config DUMMY_CONSOLE_ROWS
  72. int "Initial number of console screen rows"
  73. depends on PARISC && DUMMY_CONSOLE
  74. default "64"
  75. help
  76. The default value is 64, which should fit a 1280x1024 monitor.
  77. Select 25 if you use a 640x480 resolution by default.
  78. config FRAMEBUFFER_CONSOLE
  79. tristate "Framebuffer Console support"
  80. depends on FB && !UML
  81. select VT_HW_CONSOLE_BINDING
  82. select CRC32
  83. select FONT_SUPPORT
  84. help
  85. Low-level framebuffer-based console driver.
  86. config FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
  87. bool "Map the console to the primary display device"
  88. depends on FRAMEBUFFER_CONSOLE
  89. default n
  90. ---help---
  91. If this option is selected, the framebuffer console will
  92. automatically select the primary display device (if the architecture
  93. supports this feature). Otherwise, the framebuffer console will
  94. always select the first framebuffer driver that is loaded. The latter
  95. is the default behavior.
  96. You can always override the automatic selection of the primary device
  97. by using the fbcon=map: boot option.
  98. If unsure, select n.
  99. config FRAMEBUFFER_CONSOLE_ROTATION
  100. bool "Framebuffer Console Rotation"
  101. depends on FRAMEBUFFER_CONSOLE
  102. help
  103. Enable display rotation for the framebuffer console. This is done
  104. in software and may be significantly slower than a normally oriented
  105. display. Note that the rotation is done at the console level only
  106. such that other users of the framebuffer will remain normally
  107. oriented.
  108. config STI_CONSOLE
  109. bool "STI text console"
  110. depends on PARISC
  111. select FONT_SUPPORT
  112. default y
  113. help
  114. The STI console is the builtin display/keyboard on HP-PARISC
  115. machines. Say Y here to build support for it into your kernel.
  116. The alternative is to use your primary serial port as a console.
  117. endmenu