Kconfig 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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 && !PPC_8xx && !SPARC && !M68K && !PARISC && !SUPERH && \
  8. (!ARM || ARCH_FOOTBRIDGE || ARCH_INTEGRATOR || ARCH_NETWINDER) && \
  9. !ARM64 && !ARC && !MICROBLAZE && !OPENRISC && !NDS32 && !S390
  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 MDA_CONSOLE
  20. depends on !M68K && !PARISC && ISA
  21. tristate "MDA text console (dual-headed)"
  22. ---help---
  23. Say Y here if you have an old MDA or monochrome Hercules graphics
  24. adapter in your system acting as a second head ( = video card). You
  25. will then be able to use two monitors with your Linux system. Do not
  26. say Y here if your MDA card is the primary card in your system; the
  27. normal VGA driver will handle it.
  28. To compile this driver as a module, choose M here: the
  29. module will be called mdacon.
  30. If unsure, say N.
  31. config SGI_NEWPORT_CONSOLE
  32. tristate "SGI Newport Console support"
  33. depends on SGI_IP22 && HAS_IOMEM
  34. select FONT_SUPPORT
  35. help
  36. Say Y here if you want the console on the Newport aka XL graphics
  37. card of your Indy. Most people say Y here.
  38. config DUMMY_CONSOLE
  39. bool
  40. depends on VGA_CONSOLE!=y || SGI_NEWPORT_CONSOLE!=y
  41. default y
  42. config DUMMY_CONSOLE_COLUMNS
  43. int "Initial number of console screen columns"
  44. depends on DUMMY_CONSOLE && !ARM
  45. default 160 if PARISC
  46. default 80
  47. help
  48. On PA-RISC, the default value is 160, which should fit a 1280x1024
  49. monitor.
  50. Select 80 if you use a 640x480 resolution by default.
  51. config DUMMY_CONSOLE_ROWS
  52. int "Initial number of console screen rows"
  53. depends on DUMMY_CONSOLE && !ARM
  54. default 64 if PARISC
  55. default 25
  56. help
  57. On PA-RISC, the default value is 64, which should fit a 1280x1024
  58. monitor.
  59. Select 25 if you use a 640x480 resolution by default.
  60. config FRAMEBUFFER_CONSOLE
  61. bool "Framebuffer Console support"
  62. depends on FB && !UML
  63. select VT_HW_CONSOLE_BINDING
  64. select CRC32
  65. select FONT_SUPPORT
  66. help
  67. Low-level framebuffer-based console driver.
  68. config FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
  69. bool "Map the console to the primary display device"
  70. depends on FRAMEBUFFER_CONSOLE
  71. default n
  72. ---help---
  73. If this option is selected, the framebuffer console will
  74. automatically select the primary display device (if the architecture
  75. supports this feature). Otherwise, the framebuffer console will
  76. always select the first framebuffer driver that is loaded. The latter
  77. is the default behavior.
  78. You can always override the automatic selection of the primary device
  79. by using the fbcon=map: boot option.
  80. If unsure, select n.
  81. config FRAMEBUFFER_CONSOLE_ROTATION
  82. bool "Framebuffer Console Rotation"
  83. depends on FRAMEBUFFER_CONSOLE
  84. help
  85. Enable display rotation for the framebuffer console. This is done
  86. in software and may be significantly slower than a normally oriented
  87. display. Note that the rotation is done at the console level only
  88. such that other users of the framebuffer will remain normally
  89. oriented.
  90. config FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER
  91. bool "Framebuffer Console Deferred Takeover"
  92. depends on FB=y && FRAMEBUFFER_CONSOLE && DUMMY_CONSOLE
  93. help
  94. If enabled this defers the framebuffer console taking over the
  95. console from the dummy console until the first text is displayed on
  96. the console. This is useful in combination with the "quiet" kernel
  97. commandline option to keep the framebuffer contents initially put up
  98. by the firmware in place, rather then replacing the contents with a
  99. black screen as soon as fbcon loads.
  100. config STI_CONSOLE
  101. bool "STI text console"
  102. depends on PARISC && HAS_IOMEM
  103. select FONT_SUPPORT
  104. default y
  105. help
  106. The STI console is the builtin display/keyboard on HP-PARISC
  107. machines. Say Y here to build support for it into your kernel.
  108. The alternative is to use your primary serial port as a console.
  109. endmenu