Various fixes to Kconfig: All kconfig-boards should have a
[coreboot.git] / src / console / Kconfig
1 menu "Console options"
2
3 config CONSOLE_SERIAL8250
4         #TODO Rename to SERIAL_CONSOLE once Kconfig transition is complete.
5         bool "See output on the serial port console"
6         default y
7
8 config SERIAL_POST
9         bool "See POST output on the serial port console"
10         default n
11
12 config TTYS0_BASE
13         hex "I/O base for the serial port"
14         depends on CONSOLE_SERIAL8250
15         default 0x3f8
16
17 config SERIAL_SET_SPEED
18         bool "Override the serial console BAUD rate"
19         default y
20         depends on CONSOLE_SERIAL8250
21
22 config TTYS0_BAUD
23         int "Serial console BAUD rate"
24         depends on SERIAL_SET_SPEED
25         default 115200
26
27 config TTYS0_LCS
28         int
29         default 3
30         depends on CONSOLE_SERIAL8250
31
32 config USBDEBUG_DIRECT
33         bool "USB debug dongle support. Not supported on all chipsets."
34         default n
35         # TODO: FIX DEPENDENCY HERE
36
37 config CONSOLE_VGA
38         bool "Use VGA console, once initialized."
39         default n
40
41 config CONSOLE_VGA_ONBOARD_AT_FIRST
42         bool "Use onboard VGA as primary"
43         default n
44         help
45           If not selected, the last adapter found will be used.
46
47 config MAXIMUM_CONSOLE_LOGLEVEL
48         int "Maximum console loglevel"
49         default 9
50
51 config DEFAULT_CONSOLE_LOGLEVEL
52         int "Default console loglevel"
53         default 9
54
55 endmenu
56
57