This patch changes CONFIG_SERIAL_CONSOLE to CONFIG_CONSOLE_SERIAL8250 to match newconfig. That makes it so that the #ifdefs in code still work. I think we should avoid changing names until the conversion is complete. The other way to do it is to change all the occurrences in all the board's Options.lb files and in the code.
I get serial either way... Signed-off-by: Myles Watson <[email protected]> Thanks, Myles
Index: svn/src/console/Makefile.inc =================================================================== --- svn.orig/src/console/Makefile.inc +++ svn/src/console/Makefile.inc @@ -6,7 +6,7 @@ obj-y += vsprintf.o initobj-y += vtxprintf.o initobj-y += vsprintf.o -driver-$(CONFIG_SERIAL_CONSOLE) += uart8250_console.o +driver-$(CONFIG_CONSOLE_SERIAL8250) += uart8250_console.o driver-$(CONFIG_USBDEBUG_DIRECT) += usbdebug_direct_console.o driver-$(CONFIG_CONSOLE_VGA) += vga_console.o driver-$(CONFIG_CONSOLE_BTEXT) += btext_console.o Index: svn/src/console/Kconfig =================================================================== --- svn.orig/src/console/Kconfig +++ svn/src/console/Kconfig @@ -1,6 +1,7 @@ menu "Console options" -config SERIAL_CONSOLE +config CONSOLE_SERIAL8250 + #TODO Rename to SERIAL_CONSOLE once Kconfig transition is complete. bool "See output on the serial port console" default y @@ -10,13 +11,13 @@ config SERIAL_POST config TTYS0_BASE hex "I/O base for the serial port" - depends on SERIAL_CONSOLE + depends on CONSOLE_SERIAL8250 default 0x3f8 config SERIAL_SET_SPEED bool "Override the serial console BAUD rate" default y - depends on SERIAL_CONSOLE + depends on CONSOLE_SERIAL8250 config TTYS0_BAUD int "Serial console BAUD rate"
-- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

