Update of /cvsroot/linux-vax/kernel-2.5/arch/vax
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4060
Modified Files:
Kconfig
Log Message:
- Make Lance and SGEC select VSBus support.
- SGEC also selects Lance support because they share a struct net_dev
last_dev that's defined in the Lance driver.
- This needs to be fixed...
Index: Kconfig
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/Kconfig,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- Kconfig 31 Jul 2005 17:27:44 -0000 1.24
+++ Kconfig 18 Oct 2005 05:44:44 -0000 1.25
@@ -88,6 +88,10 @@
bool "Support for KA410"
default n
+config CPU_KA41
+ bool "Support for KA41 (MicroVAX 3100 Model 10)"
+ default n
+
config CPU_KA42
bool "Support for KA42 (VAXstation 3100 Model 38)"
default n
@@ -104,18 +108,31 @@
bool "Support for KA48 (VAXstation 4000 VLC)"
default n
-config CPU_KA49
- bool "Support for KA49 (VAXstation 4000/90)"
+config CPU_KA52
+ bool "Support for KA52 (VAXstation 4000 Model 100A)"
+ select CONS_PREVM_KA52
default n
config CPU_KA55
bool "Support for KA55"
default n
+config CPU_KA49
+ bool "Support for KA49 (VAXstation 4000/90)"
+ default n
+
+config CPU_KA62
+ bool "Support for KA62 (VAXstation 6000/3x0)"
+ select SERIAL_IPR
+ default n
+
config CPU_VXT
bool "Support for VXT"
default n
+config CONS_PREVM_KA52
+ bool
+ default n
endmenu
source "init/Kconfig"
@@ -152,15 +169,18 @@
config VAX_LANCE
bool "LANCE ethernet controller support"
+ select VSBUS
default n
config VAX_SGEC
bool "SGEC ethernet controller support (EXPERIMENTAL)"
+ select VSBUS
+ select VAX_LANCE
default n
config DELQA
bool "DELQA/DEQNA Q-bus ethernet controller support"
- depends QBUS
+ select QBUS
default n
endmenu
|