Separate CONFIG_VGA_CONSOLE from CONFIG_VGA_BRIDGE_SETUP.
[coreboot.git] / src / console / Kconfig
1 menu "Console options"
2
3 config SERIAL_CONSOLE
4         bool "See output on the serial port console"
5         default y
6
7 config SERIAL_POST
8         bool "See POST output on the serial port console"
9         default n
10
11 config TTYS0_BASE
12         hex "I/O base for the serial port"
13         depends on SERIAL_CONSOLE
14         default 0x3f8
15
16 config SERIAL_SET_SPEED
17         bool "Override the serial console BAUD rate"
18         default y
19         depends on SERIAL_CONSOLE
20
21 config TTYS0_BAUD
22         int "Serial console BAUD rate"
23         depends on SERIAL_SET_SPEED
24         default 115200
25
26 config USBDEBUG_DIRECT
27         bool "USB debug dongle support. Not supported on all chipsets."
28         default n
29         # TODO: FIX DEPENDENCY HERE
30
31 config CONSOLE_VGA
32         bool "Use VGA console, once initialized."
33         default n
34
35 config MAXIMUM_CONSOLE_LOGLEVEL
36         int
37         default 9
38
39 config DEFAULT_CONSOLE_LOGLEVEL
40         int
41         default 9
42
43 endmenu
44
45