Update of /cvsroot/linux-vax/kernel-2.5/arch/vax
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25352/arch/vax
Modified Files:
Kconfig
Log Message:
Automatically select SERIAL_CORE when needed. UNIX98_PTY and RTC
config are now handled via a core kernel Kconfig file.
Index: Kconfig
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/Kconfig,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- Kconfig 16 Aug 2004 11:22:38 -0000 1.19
+++ Kconfig 17 Aug 2004 22:32:05 -0000 1.20
@@ -187,37 +187,22 @@
if SERIAL
-config SERIAL_CORE
- bool "New-style core serial driver"
- default y
-
config DZ
bool "DZ11 Serial Support"
default n
config SERIAL_IPR
- depends SERIAL_CORE
bool "CPU register-based Serial Console Support"
default y
+ select SERIAL_CORE
config SERIAL_CONSOLE
bool "Support for console on serial port"
default y
+ select SERIAL_CORE_CONSOLE
endif
-config UNIX98_PTYS
- bool "Unix98 PTY support"
- default y
-
-config UNIX98_PTY_COUNT
- int "Maximum number of Unix98 PTYs in use (0-2048)"
- depends UNIX98_PTYS
- default 256
-
-config RTC
- bool "Enhanced Real Time Clock Support"
-
endmenu
|