386f8391fe6a31845b102db49a309a730e08fd2f
[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 TTYS0_BASE
8         hex "I/O base for the serial port (default 0x3f8)"
9         depends on SERIAL_CONSOLE
10         default 0x3f8
11
12 config SERIAL_SET_SPEED
13         bool "Override the serial console baud rate"
14         default y
15         depends on SERIAL_CONSOLE
16
17 config TTYS0_BAUD
18         int "Serial console baud rate (default 115200)"
19         depends on SERIAL_SET_SPEED
20         default 115200
21
22 config USBDEBUG_DIRECT
23         bool "Support a USB debug dongle. Not supported on all chipsets. FIX DEPENDENCY HERE"
24         default n
25
26 config CONSOLE_VGA
27         bool
28         default n
29
30 config MAXIMUM_CONSOLE_LOGLEVEL
31         int
32         default 9
33
34 config DEFAULT_CONSOLE_LOGLEVEL
35         int
36         default 9
37
38 endmenu
39
40