rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # |
| 2 | # Video configuration |
| 3 | # |
| 4 | |
| 5 | menu "Console display driver support" |
| 6 | |
| 7 | config VGA_CONSOLE |
| 8 | bool "VGA text console" if EXPERT || !X86 |
| 9 | depends on !4xx && !PPC_8xx && !SPARC && !M68K && !PARISC && !FRV && \ |
| 10 | !SUPERH && !BLACKFIN && !AVR32 && !MN10300 && !CRIS && \ |
| 11 | (!ARM || ARCH_FOOTBRIDGE || ARCH_INTEGRATOR || ARCH_NETWINDER) && \ |
| 12 | !ARM64 && !ARC && !MICROBLAZE && !OPENRISC |
| 13 | default y |
| 14 | help |
| 15 | Saying Y here will allow you to use Linux in text mode through a |
| 16 | display that complies with the generic VGA standard. Virtually |
| 17 | everyone wants that. |
| 18 | |
| 19 | The program SVGATextMode can be used to utilize SVGA video cards to |
| 20 | their full potential in text mode. Download it from |
| 21 | <ftp://ibiblio.org/pub/Linux/utils/console/>. |
| 22 | |
| 23 | Say Y. |
| 24 | |
| 25 | config MDA_CONSOLE |
| 26 | depends on !M68K && !PARISC && ISA |
| 27 | tristate "MDA text console (dual-headed)" |
| 28 | ---help--- |
| 29 | Say Y here if you have an old MDA or monochrome Hercules graphics |
| 30 | adapter in your system acting as a second head ( = video card). You |
| 31 | will then be able to use two monitors with your Linux system. Do not |
| 32 | say Y here if your MDA card is the primary card in your system; the |
| 33 | normal VGA driver will handle it. |
| 34 | |
| 35 | To compile this driver as a module, choose M here: the |
| 36 | module will be called mdacon. |
| 37 | |
| 38 | If unsure, say N. |
| 39 | |
| 40 | config SGI_NEWPORT_CONSOLE |
| 41 | tristate "SGI Newport Console support" |
| 42 | depends on SGI_IP22 |
| 43 | select FONT_SUPPORT |
| 44 | help |
| 45 | Say Y here if you want the console on the Newport aka XL graphics |
| 46 | card of your Indy. Most people say Y here. |
| 47 | |
| 48 | config DUMMY_CONSOLE |
| 49 | bool |
| 50 | depends on VGA_CONSOLE!=y || SGI_NEWPORT_CONSOLE!=y |
| 51 | default y |
| 52 | |
| 53 | config DUMMY_CONSOLE_COLUMNS |
| 54 | int "Initial number of console screen columns" |
| 55 | depends on DUMMY_CONSOLE && !ARM |
| 56 | default 160 if PARISC |
| 57 | default 80 |
| 58 | help |
| 59 | On PA-RISC, the default value is 160, which should fit a 1280x1024 |
| 60 | monitor. |
| 61 | Select 80 if you use a 640x480 resolution by default. |
| 62 | |
| 63 | config DUMMY_CONSOLE_ROWS |
| 64 | int "Initial number of console screen rows" |
| 65 | depends on DUMMY_CONSOLE && !ARM |
| 66 | default 64 if PARISC |
| 67 | default 25 |
| 68 | help |
| 69 | On PA-RISC, the default value is 64, which should fit a 1280x1024 |
| 70 | monitor. |
| 71 | Select 25 if you use a 640x480 resolution by default. |
| 72 | |
| 73 | config FRAMEBUFFER_CONSOLE |
| 74 | bool "Framebuffer Console support" |
| 75 | depends on FB && !UML |
| 76 | select VT_HW_CONSOLE_BINDING |
| 77 | select CRC32 |
| 78 | select FONT_SUPPORT |
| 79 | help |
| 80 | Low-level framebuffer-based console driver. |
| 81 | |
| 82 | config FRAMEBUFFER_CONSOLE_DETECT_PRIMARY |
| 83 | bool "Map the console to the primary display device" |
| 84 | depends on FRAMEBUFFER_CONSOLE |
| 85 | default n |
| 86 | ---help--- |
| 87 | If this option is selected, the framebuffer console will |
| 88 | automatically select the primary display device (if the architecture |
| 89 | supports this feature). Otherwise, the framebuffer console will |
| 90 | always select the first framebuffer driver that is loaded. The latter |
| 91 | is the default behavior. |
| 92 | |
| 93 | You can always override the automatic selection of the primary device |
| 94 | by using the fbcon=map: boot option. |
| 95 | |
| 96 | If unsure, select n. |
| 97 | |
| 98 | config FRAMEBUFFER_CONSOLE_ROTATION |
| 99 | bool "Framebuffer Console Rotation" |
| 100 | depends on FRAMEBUFFER_CONSOLE |
| 101 | help |
| 102 | Enable display rotation for the framebuffer console. This is done |
| 103 | in software and may be significantly slower than a normally oriented |
| 104 | display. Note that the rotation is done at the console level only |
| 105 | such that other users of the framebuffer will remain normally |
| 106 | oriented. |
| 107 | |
| 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 | |
| 118 | endmenu |
| 119 | |