From: Kenn H. <ke...@us...> - 2002-09-29 19:33:19
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory usw-pr-cvs1:/tmp/cvs-serv29366/arch/vax Modified Files: config.in ka650.config Log Message: Partially-working driver for console serial ports driven by RXCS, RXDB, TXCS and TXDB internal processor registers. printk() works, but it doesn't yet work for regalar userland I/O. Enabled by CONFIG_SERIAL_IPR config option. Only supported for KA650 right now. Index: config.in =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/config.in,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- config.in 18 Jul 2002 23:56:36 -0000 1.7 +++ config.in 29 Sep 2002 19:33:15 -0000 1.8 @@ -158,11 +158,10 @@ if [ "$CONFIG_VT" = "y" ]; then bool 'Support for console on virtual terminal' CONFIG_VT_CONSOLE fi -tristate 'Standard/generic (dumb) serial support' CONFIG_SERIAL +tristate 'Serial port support' CONFIG_SERIAL if [ "$CONFIG_SERIAL" = "y" ]; then bool 'DZ11 Serial Support' CONFIG_DZ - bool 'CPU register-based Serial Console Support' CONFIG_SERIAL_MTPR - bool 'KA640/650/655 Serial Console Support' CONFIG_SERIAL_KA650 + bool 'CPU register-based Serial Console Support' CONFIG_SERIAL_IPR bool ' Support for console on serial port' CONFIG_SERIAL_CONSOLE fi bool 'Unix98 PTY support' CONFIG_UNIX98_PTYS Index: ka650.config =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/ka650.config,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ka650.config 18 Jul 2002 23:56:36 -0000 1.3 +++ ka650.config 29 Sep 2002 19:33:15 -0000 1.4 @@ -273,8 +273,7 @@ # CONFIG_VT is not set CONFIG_SERIAL=y # CONFIG_DZ is not set -CONFIG_SERIAL_MTPR=y -CONFIG_SERIAL_KA650=y +CONFIG_SERIAL_IPR=y CONFIG_SERIAL_CONSOLE=y CONFIG_UNIX98_PTYS=y CONFIG_UNIX98_PTY_COUNT=256 |