From: James S. <jsi...@us...> - 2002-06-04 19:45:12
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/char In directory usw-pr-cvs1:/tmp/cvs-serv29363/linux/drivers/char Modified Files: Config.in Makefile tty_io.c Log Message: Synced to 2.5.20. Index: Config.in =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/char/Config.in,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- Config.in 16 May 2002 18:01:39 -0000 1.39 +++ Config.in 4 Jun 2002 19:45:08 -0000 1.40 @@ -105,6 +105,9 @@ fi dep_tristate 'Support for user-space parallel port device drivers' CONFIG_PPDEV $CONFIG_PARPORT fi +if [ "$CONFIG_PPC_PSERIES" = "y" ]; then + bool 'pSeries Hypervisor Virtual Console support' CONFIG_HVC_CONSOLE +fi source drivers/i2c/Config.in @@ -197,6 +200,7 @@ bool ' ALI chipset support' CONFIG_AGP_ALI bool ' Serverworks LE/HE support' CONFIG_AGP_SWORKS if [ "$CONFIG_IA64" = "y" ]; then + bool ' Intel 460GX support' CONFIG_AGP_I460 bool ' HP ZX1 AGP support' CONFIG_AGP_HP_ZX1 fi fi Index: Makefile =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/char/Makefile,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- Makefile 3 Jun 2002 22:44:57 -0000 1.41 +++ Makefile 4 Jun 2002 19:45:08 -0000 1.42 @@ -60,6 +60,7 @@ obj-$(CONFIG_MVME162_SCC) += generic_serial.o vme_scc.o obj-$(CONFIG_BVME6000_SCC) += generic_serial.o vme_scc.o obj-$(CONFIG_SERIAL_TX3912) += generic_serial.o serial_tx3912.o +obj-$(CONFIG_HVC_CONSOLE) += hvc_console.o obj-$(CONFIG_PRINTER) += lp.o obj-$(CONFIG_DTLK) += dtlk.o Index: tty_io.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/char/tty_io.c,v retrieving revision 1.49 retrieving revision 1.50 diff -u -d -r1.49 -r1.50 --- tty_io.c 16 May 2002 18:01:39 -0000 1.49 +++ tty_io.c 4 Jun 2002 19:45:09 -0000 1.50 @@ -154,6 +154,7 @@ extern void sci_console_init(void); extern void tx3912_console_init(void); extern void tx3912_rs_init(void); +extern void hvc_console_init(void); #ifndef MIN #define MIN(a,b) ((a) < (b) ? (a) : (b)) @@ -2230,6 +2231,9 @@ #endif #ifdef CONFIG_SERIAL_TX3912_CONSOLE tx3912_console_init(); +#endif +#ifdef CONFIG_HVC_CONSOLE + hvc_console_init(); #endif } |