Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #
  2. # D-Link device configuration
  3. #
  4. config NET_VENDOR_DLINK
  5. bool "D-Link devices"
  6. default y
  7. depends on PCI
  8. ---help---
  9. If you have a network (Ethernet) card belonging to this class, say Y.
  10. Note that the answer to this question doesn't directly affect the
  11. kernel: saying N will just cause the configurator to skip all
  12. the questions about D-Link devices. If you say Y, you will be asked for
  13. your specific card in the following questions.
  14. if NET_VENDOR_DLINK
  15. config DL2K
  16. tristate "DL2000/TC902x/IP1000A-based Gigabit Ethernet support"
  17. depends on PCI
  18. select CRC32
  19. ---help---
  20. This driver supports DL2000/TC902x/IP1000A-based Gigabit ethernet cards,
  21. which includes
  22. D-Link DGE-550T Gigabit Ethernet Adapter.
  23. D-Link DL2000-based Gigabit Ethernet Adapter.
  24. Sundance/Tamarack TC902x Gigabit Ethernet Adapter.
  25. ICPlus IP1000A-based cards
  26. To compile this driver as a module, choose M here: the
  27. module will be called dl2k.
  28. config SUNDANCE
  29. tristate "Sundance Alta support"
  30. depends on PCI
  31. select CRC32
  32. select MII
  33. ---help---
  34. This driver is for the Sundance "Alta" chip.
  35. More specific information and updates are available from
  36. <http://www.scyld.com/network/sundance.html>.
  37. config SUNDANCE_MMIO
  38. bool "Use MMIO instead of PIO"
  39. depends on SUNDANCE
  40. ---help---
  41. Enable memory-mapped I/O for interaction with Sundance NIC registers.
  42. Do NOT enable this by default, PIO (enabled when MMIO is disabled)
  43. is known to solve bugs on certain chips.
  44. If unsure, say N.
  45. endif # NET_VENDOR_DLINK