diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-08-13 03:37:14 -0400 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-08-13 03:37:14 -0400 |
commit | 531c4f896ca380812c22841e8ae396428a3327bf (patch) | |
tree | 321dfd12184406b18eb0154ff8a416f394352870 /drivers/net/ethernet/alteon/Kconfig | |
parent | cdd80bd4eece6109c15864e776b83c88c3bd891b (diff) |
acenic: Move the Alteon driver
Based on feedback from Alan Cox, the acenic driver moved to
drivers/net/ethernet/alteon/ and made the necessary Kconfig and
Makefile changes.
CC: Jes Sorensen <jes@trained-monkey.org>
CC: Alan Cox <alan@linux.intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/alteon/Kconfig')
-rw-r--r-- | drivers/net/ethernet/alteon/Kconfig | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/drivers/net/ethernet/alteon/Kconfig b/drivers/net/ethernet/alteon/Kconfig new file mode 100644 index 000000000000..68862e4d145c --- /dev/null +++ b/drivers/net/ethernet/alteon/Kconfig | |||
@@ -0,0 +1,47 @@ | |||
1 | # | ||
2 | # Alteon network device configuration | ||
3 | # | ||
4 | |||
5 | config NET_VENDOR_ALTEON | ||
6 | bool "Alteon 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 Alteon cards. If you say Y, you will be asked for | ||
16 | your specific card in the following questions. | ||
17 | |||
18 | if NET_VENDOR_ALTEON | ||
19 | |||
20 | config ACENIC | ||
21 | tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support" | ||
22 | depends on PCI | ||
23 | ---help--- | ||
24 | Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear | ||
25 | GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet | ||
26 | adapter. The driver allows for using the Jumbo Frame option (9000 | ||
27 | bytes/frame) however it requires that your switches can handle this | ||
28 | as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig | ||
29 | line. | ||
30 | |||
31 | To compile this driver as a module, choose M here: the | ||
32 | module will be called acenic. | ||
33 | |||
34 | config ACENIC_OMIT_TIGON_I | ||
35 | bool "Omit support for old Tigon I based AceNICs" | ||
36 | depends on ACENIC | ||
37 | ---help--- | ||
38 | Say Y here if you only have Tigon II based AceNICs and want to leave | ||
39 | out support for the older Tigon I based cards which are no longer | ||
40 | being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B | ||
41 | version)). This will reduce the size of the driver object by | ||
42 | app. 100KB. If you are not sure whether your card is a Tigon I or a | ||
43 | Tigon II, say N here. | ||
44 | |||
45 | The safe and default value for this is N. | ||
46 | |||
47 | endif # NET_VENDOR_ALTEON | ||