Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Alteon network device configuration
  4. #
  5. config NET_VENDOR_ALTEON
  6. bool "Alteon devices"
  7. default y
  8. depends on PCI
  9. help
  10. If you have a network (Ethernet) card belonging to this class, say Y.
  11. Note that the answer to this question doesn't directly affect the
  12. kernel: saying N will just cause the configurator to skip all
  13. the questions about Alteon cards. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_ALTEON
  16. config ACENIC
  17. tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support"
  18. depends on PCI
  19. help
  20. Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear
  21. GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet
  22. adapter. The driver allows for using the Jumbo Frame option (9000
  23. bytes/frame) however it requires that your switches can handle this
  24. as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig
  25. line.
  26. To compile this driver as a module, choose M here: the
  27. module will be called acenic.
  28. config ACENIC_OMIT_TIGON_I
  29. bool "Omit support for old Tigon I based AceNICs"
  30. depends on ACENIC
  31. help
  32. Say Y here if you only have Tigon II based AceNICs and want to leave
  33. out support for the older Tigon I based cards which are no longer
  34. being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B
  35. version)). This will reduce the size of the driver object by
  36. app. 100KB. If you are not sure whether your card is a Tigon I or a
  37. Tigon II, say N here.
  38. The safe and default value for this is N.
  39. endif # NET_VENDOR_ALTEON