Kconfig 4.8 KB

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