Kconfig 1.6 KB

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