[coreboot] [v2] r4869 - trunk/coreboot-v2/src/console

svn at coreboot.org svn at coreboot.org
Tue Oct 27 00:52:34 CET 2009


Author: uwe
Date: 2009-10-27 00:52:34 +0100 (Tue, 27 Oct 2009)
New Revision: 4869

Modified:
   trunk/coreboot-v2/src/console/Kconfig
Log:
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 at hermann-uwe.de>
Acked-by: Uwe Hermann <uwe at hermann-uwe.de>



Modified: trunk/coreboot-v2/src/console/Kconfig
===================================================================
--- trunk/coreboot-v2/src/console/Kconfig	2009-10-26 22:49:00 UTC (rev 4868)
+++ trunk/coreboot-v2/src/console/Kconfig	2009-10-26 23:52:34 UTC (rev 4869)
@@ -8,26 +8,26 @@
 	  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 @@
 	  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 @@
 	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





More information about the coreboot mailing list