Kconfig 4.4 KB

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