diff options
author | Frank Blaschka <frank.blaschka@de.ibm.com> | 2008-02-15 03:19:42 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2008-03-17 07:49:26 -0400 |
commit | 4a71df50047f0db65ea09b1be155852e81a45eba (patch) | |
tree | c1dee8950578440685da91d2553c78f0ff1fd370 /drivers/s390/net/Kconfig | |
parent | 04885948b101c44cbec9dacfb49b28290a899012 (diff) |
qeth: new qeth device driver
List of major changes and improvements:
no manipulation of the global ARP constructor
clean code split into core, layer 2 and layer 3 functionality
better exploitation of the ethtool interface
better representation of the various hardware capabilities
fix packet socket support (tcpdump), no fake_ll required
osasnmpd notification via udev events
coding style and beautification
Signed-off-by: Frank Blaschka <frank.blaschka@de.ibm.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/s390/net/Kconfig')
-rw-r--r-- | drivers/s390/net/Kconfig | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/drivers/s390/net/Kconfig b/drivers/s390/net/Kconfig index 773f5a6d5822..a7745c82b4ae 100644 --- a/drivers/s390/net/Kconfig +++ b/drivers/s390/net/Kconfig | |||
@@ -67,23 +67,26 @@ config QETH | |||
67 | To compile this driver as a module, choose M. | 67 | To compile this driver as a module, choose M. |
68 | The module name is qeth.ko. | 68 | The module name is qeth.ko. |
69 | 69 | ||
70 | config QETH_L2 | ||
71 | tristate "qeth layer 2 device support" | ||
72 | depends on QETH | ||
73 | help | ||
74 | Select this option to be able to run qeth devices in layer 2 mode. | ||
75 | To compile as a module, choose M. The module name is qeth_l2.ko. | ||
76 | If unsure, choose y. | ||
70 | 77 | ||
71 | comment "Gigabit Ethernet default settings" | 78 | config QETH_L3 |
72 | depends on QETH | 79 | tristate "qeth layer 3 device support" |
80 | depends on QETH | ||
81 | help | ||
82 | Select this option to be able to run qeth devices in layer 3 mode. | ||
83 | To compile as a module choose M. The module name is qeth_l3.ko. | ||
84 | If unsure, choose Y. | ||
73 | 85 | ||
74 | config QETH_IPV6 | 86 | config QETH_IPV6 |
75 | bool "IPv6 support for gigabit ethernet" | 87 | bool |
76 | depends on (QETH = IPV6) || (QETH && IPV6 = 'y') | 88 | depends on (QETH_L3 = IPV6) || (QETH_L3 && IPV6 = 'y') |
77 | help | 89 | default y |
78 | If CONFIG_QETH is switched on, this option will include IPv6 | ||
79 | support in the qeth device driver. | ||
80 | |||
81 | config QETH_VLAN | ||
82 | bool "VLAN support for gigabit ethernet" | ||
83 | depends on (QETH = VLAN_8021Q) || (QETH && VLAN_8021Q = 'y') | ||
84 | help | ||
85 | If CONFIG_QETH is switched on, this option will include IEEE | ||
86 | 802.1q VLAN support in the qeth device driver. | ||
87 | 90 | ||
88 | config CCWGROUP | 91 | config CCWGROUP |
89 | tristate | 92 | tristate |