blob: fe1cd0148e139eaa6bdf844f1329f427a9863101 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Video configuration
3#
4
5menu "Console display driver support"
6
7config VGA_CONSOLE
David Rientjes6a108a12011-01-20 14:44:16 -08008 bool "VGA text console" if EXPERT || !X86
Geert Uytterhoeven35356292013-05-17 11:04:44 +02009 depends on !4xx && !8xx && !SPARC && !M68K && !PARISC && !FRV && \
10 !SUPERH && !BLACKFIN && !AVR32 && !MN10300 && !CRIS && \
Mark Brownee237942013-12-17 23:37:01 +000011 (!ARM || ARCH_FOOTBRIDGE || ARCH_INTEGRATOR || ARCH_NETWINDER) && \
12 !ARM64
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 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
Antonino A. Daplas15bdab92006-03-27 01:17:20 -080025config VGACON_SOFT_SCROLLBACK
26 bool "Enable Scrollback Buffer in System RAM"
27 depends on VGA_CONSOLE
28 default n
29 help
30 The scrollback buffer of the standard VGA console is located in
31 the VGA RAM. The size of this RAM is fixed and is quite small.
32 If you require a larger scrollback buffer, this can be placed in
Matt LaPlante01dd2fb2007-10-20 01:34:40 +020033 System RAM which is dynamically allocated during initialization.
Antonino A. Daplas15bdab92006-03-27 01:17:20 -080034 Placing the scrollback buffer in System RAM will slightly slow
35 down the console.
36
37 If you want this feature, say 'Y' here and enter the amount of
38 RAM to allocate for this buffer. If unsure, say 'N'.
39
40config VGACON_SOFT_SCROLLBACK_SIZE
41 int "Scrollback Buffer Size (in KB)"
42 depends on VGACON_SOFT_SCROLLBACK
Amerigo Wanga52712a2010-03-05 13:44:17 -080043 range 1 1024
Antonino A. Daplas15bdab92006-03-27 01:17:20 -080044 default "64"
45 help
46 Enter the amount of System RAM to allocate for the scrollback
47 buffer. Each 64KB will give you approximately 16 80x25
48 screenfuls of scrollback buffer
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050config MDA_CONSOLE
51 depends on !M68K && !PARISC && ISA
Kees Cook55ec4c32013-01-16 18:53:58 -080052 tristate "MDA text console (dual-headed)"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 ---help---
54 Say Y here if you have an old MDA or monochrome Hercules graphics
55 adapter in your system acting as a second head ( = video card). You
56 will then be able to use two monitors with your Linux system. Do not
57 say Y here if your MDA card is the primary card in your system; the
58 normal VGA driver will handle it.
59
60 To compile this driver as a module, choose M here: the
61 module will be called mdacon.
62
63 If unsure, say N.
64
65config SGI_NEWPORT_CONSOLE
66 tristate "SGI Newport Console support"
67 depends on SGI_IP22
Geert Uytterhoevend1e183c2013-05-15 13:26:20 +020068 select FONT_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 help
70 Say Y here if you want the console on the Newport aka XL graphics
71 card of your Indy. Most people say Y here.
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073config DUMMY_CONSOLE
74 bool
David S. Miller09d3f3f2009-09-15 17:04:38 -070075 depends on VGA_CONSOLE!=y || SGI_NEWPORT_CONSOLE!=y
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 default y
77
78config DUMMY_CONSOLE_COLUMNS
79 int "Initial number of console screen columns"
80 depends on PARISC && DUMMY_CONSOLE
81 default "160"
82 help
83 The default value is 160, which should fit a 1280x1024 monitor.
84 Select 80 if you use a 640x480 resolution by default.
85
86config DUMMY_CONSOLE_ROWS
87 int "Initial number of console screen rows"
88 depends on PARISC && DUMMY_CONSOLE
89 default "64"
90 help
91 The default value is 64, which should fit a 1280x1024 monitor.
92 Select 25 if you use a 640x480 resolution by default.
93
94config FRAMEBUFFER_CONSOLE
95 tristate "Framebuffer Console support"
David Herrmann765d5b92013-08-02 14:05:27 +020096 depends on FB && !UML
97 select VT_HW_CONSOLE_BINDING
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 select CRC32
Geert Uytterhoevend1e183c2013-05-15 13:26:20 +020099 select FONT_SUPPORT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800100 help
101 Low-level framebuffer-based console driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700103config FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
104 bool "Map the console to the primary display device"
Antonino A. Daplasafd1db12007-07-17 04:05:32 -0700105 depends on FRAMEBUFFER_CONSOLE
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700106 default n
107 ---help---
108 If this option is selected, the framebuffer console will
109 automatically select the primary display device (if the architecture
110 supports this feature). Otherwise, the framebuffer console will
111 always select the first framebuffer driver that is loaded. The latter
112 is the default behavior.
113
114 You can always override the automatic selection of the primary device
115 by using the fbcon=map: boot option.
116
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700117 If unsure, select n.
118
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800119config FRAMEBUFFER_CONSOLE_ROTATION
120 bool "Framebuffer Console Rotation"
121 depends on FRAMEBUFFER_CONSOLE
122 help
123 Enable display rotation for the framebuffer console. This is done
124 in software and may be significantly slower than a normally oriented
125 display. Note that the rotation is done at the console level only
126 such that other users of the framebuffer will remain normally
127 oriented.
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129config STI_CONSOLE
Kyle McMartin1eb51c3622007-06-29 02:15:12 -0400130 bool "STI text console"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 depends on PARISC
Geert Uytterhoevend1e183c2013-05-15 13:26:20 +0200132 select FONT_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 default y
134 help
135 The STI console is the builtin display/keyboard on HP-PARISC
136 machines. Say Y here to build support for it into your kernel.
137 The alternative is to use your primary serial port as a console.
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139endmenu
140