summaryrefslogtreecommitdiff
path: root/src/console
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2009-10-26 23:52:34 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2009-10-26 23:52:34 +0000
commita081a3b65fdb118476f000d6367d48607b7a7f2d (patch)
tree10a88eb3fd8e6e60834486facd0e8cd5cda5376b /src/console
parente21f75a8c3e6d7587fbf427ebc3144182166c6cd (diff)
downloadcoreboot-a081a3b65fdb118476f000d6367d48607b7a7f2d.tar.xz
Various smaller console option fixes as suggested by Peter Stuge:
- Change "COM port" to "Serial port". - Also show the I/O port of the serial ports. Keep "COM1/ttyS0" though for easy recognition by the average user. - Change BAUD to Baud. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4869 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console')
-rw-r--r--src/console/Kconfig32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/console/Kconfig b/src/console/Kconfig
index 4aa5ed3303..3c46fdff56 100644
--- a/src/console/Kconfig
+++ b/src/console/Kconfig
@@ -8,26 +8,26 @@ config CONSOLE_SERIAL8250
Send coreboot debug output to a serial port console.
choice
- prompt "COM port"
+ prompt "Serial port"
default CONSOLE_SERIAL_COM1
depends on CONSOLE_SERIAL8250
config CONSOLE_SERIAL_COM1
- bool "COM1/ttyS0"
+ bool "COM1/ttyS0, I/O port 0x3f8"
help
- Serial console on COM1/ttyS0.
+ Serial console on COM1/ttyS0 at I/O port 0x3f8.
config CONSOLE_SERIAL_COM2
- bool "COM2/ttyS1"
+ bool "COM2/ttyS1, I/O port 0x2f8"
help
- Serial console on COM2/ttyS1.
+ Serial console on COM2/ttyS1 at I/O port 0x2f8.
config CONSOLE_SERIAL_COM3
- bool "COM3/ttyS2"
+ bool "COM3/ttyS2, I/O port 0x3e8"
help
- Serial console on COM3/ttyS2.
+ Serial console on COM3/ttyS2 at I/O port 0x3e8.
config CONSOLE_SERIAL_COM4
- bool "COM4/ttyS3"
+ bool "COM4/ttyS3, I/O port 0x2e8"
help
- Serial console on COM4/ttyS3.
+ Serial console on COM4/ttyS3 at I/O port 0x2e8.
endchoice
@@ -42,30 +42,30 @@ config TTYS0_BASE
Map the COM port names to the respective I/O port.
choice
- prompt "BAUD rate"
+ prompt "Baud rate"
default CONSOLE_SERIAL_115200
depends on CONSOLE_SERIAL8250
config CONSOLE_SERIAL_115200
bool "115200"
help
- Set serial port BAUD rate to 115200.
+ Set serial port Baud rate to 115200.
config CONSOLE_SERIAL_57600
bool "57600"
help
- Set serial port BAUD rate to 57600.
+ Set serial port Baud rate to 57600.
config CONSOLE_SERIAL_38400
bool "38400"
help
- Set serial port BAUD rate to 38400.
+ Set serial port Baud rate to 38400.
config CONSOLE_SERIAL_19200
bool "19200"
help
- Set serial port BAUD rate to 19200.
+ Set serial port Baud rate to 19200.
config CONSOLE_SERIAL_9600
bool "9600"
help
- Set serial port BAUD rate to 9600.
+ Set serial port Baud rate to 9600.
endchoice
@@ -77,7 +77,7 @@ config TTYS0_BAUD
default 19200 if CONSOLE_SERIAL_19200
default 9600 if CONSOLE_SERIAL_9600
help
- Map the BAUD rates to an integer.
+ Map the Baud rates to an integer.
# TODO: Allow user-friendly selection of settings other than 8n1.
config TTYS0_LCS