diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-06-14 17:02:57 -0400 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-08-12 06:41:14 -0400 |
commit | 554f4ffd3b2cd88e42007d069bc519563d0b459f (patch) | |
tree | 3701f6d17551bc275d5622721c149521327faaea /drivers/net/ethernet/packetengines/Kconfig | |
parent | b544dbac41218fd015ac79455cfc1e57736e9b0c (diff) |
hamachi/yellowfin: Move the packet engine drivers
Move the packet engine drivers to drivers/net/ethernet/packetengines/
and the necessary Kconfig and Makefile changes.
CC: Donald Becker <becker@scyld.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/packetengines/Kconfig')
-rw-r--r-- | drivers/net/ethernet/packetengines/Kconfig | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/drivers/net/ethernet/packetengines/Kconfig b/drivers/net/ethernet/packetengines/Kconfig new file mode 100644 index 000000000000..4add1db20f1e --- /dev/null +++ b/drivers/net/ethernet/packetengines/Kconfig | |||
@@ -0,0 +1,46 @@ | |||
1 | # | ||
2 | # Packet engine device configuration | ||
3 | # | ||
4 | |||
5 | config NET_PACKET_ENGINE | ||
6 | bool "Packet Engine devices" | ||
7 | depends on PCI | ||
8 | ---help--- | ||
9 | If you have a network (Ethernet) card belonging to this class, say Y | ||
10 | and read the Ethernet-HOWTO, available from | ||
11 | <http://www.tldp.org/docs.html#howto>. | ||
12 | |||
13 | Note that the answer to this question doesn't directly affect the | ||
14 | kernel: saying N will just cause the configurator to skip all | ||
15 | the questions about packet engine devices. If you say Y, you will | ||
16 | be asked for your specific card in the following questions. | ||
17 | |||
18 | if NET_PACKET_ENGINE | ||
19 | |||
20 | config HAMACHI | ||
21 | tristate "Packet Engines Hamachi GNIC-II support" | ||
22 | depends on PCI | ||
23 | select MII | ||
24 | ---help--- | ||
25 | If you have a Gigabit Ethernet card of this type, say Y and read | ||
26 | the Ethernet-HOWTO, available from | ||
27 | <http://www.tldp.org/docs.html#howto>. | ||
28 | |||
29 | To compile this driver as a module, choose M here. The module will be | ||
30 | called hamachi. | ||
31 | |||
32 | config YELLOWFIN | ||
33 | tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)" | ||
34 | depends on PCI && EXPERIMENTAL | ||
35 | select CRC32 | ||
36 | ---help--- | ||
37 | Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet | ||
38 | adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is | ||
39 | used by the Beowulf Linux cluster project. See | ||
40 | <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more | ||
41 | information about this driver in particular and Beowulf in general. | ||
42 | |||
43 | To compile this driver as a module, choose M here: the module | ||
44 | will be called yellowfin. This is recommended. | ||
45 | |||
46 | endif # NET_PACKET_ENGINE | ||