1# 2# D-Link device configuration 3# 4 5config NET_VENDOR_DLINK 6 bool "D-Link devices" 7 default y 8 depends on PCI || PARPORT 9 ---help--- 10 If you have a network (Ethernet) card belonging to this class, say Y 11 and read the Ethernet-HOWTO, available from 12 <http://www.tldp.org/docs.html#howto>. 13 14 Note that the answer to this question doesn't directly affect the 15 kernel: saying N will just cause the configurator to skip all 16 the questions about D-Link devices. If you say Y, you will be asked for 17 your specific card in the following questions. 18 19if NET_VENDOR_DLINK 20 21config DE600 22 tristate "D-Link DE600 pocket adapter support" 23 depends on PARPORT 24 ---help--- 25 This is a network (Ethernet) device which attaches to your parallel 26 port. Read <file:Documentation/networking/DLINK.txt> as well as the 27 Ethernet-HOWTO, available from 28 <http://www.tldp.org/docs.html#howto>, if you want to use 29 this. It is possible to have several devices share a single parallel 30 port and it is safe to compile the corresponding drivers into the 31 kernel. 32 33 To compile this driver as a module, choose M here: the module 34 will be called de600. 35 36config DE620 37 tristate "D-Link DE620 pocket adapter support" 38 depends on PARPORT 39 ---help--- 40 This is a network (Ethernet) device which attaches to your parallel 41 port. Read <file:Documentation/networking/DLINK.txt> as well as the 42 Ethernet-HOWTO, available from 43 <http://www.tldp.org/docs.html#howto>, if you want to use 44 this. It is possible to have several devices share a single parallel 45 port and it is safe to compile the corresponding drivers into the 46 kernel. 47 48 To compile this driver as a module, choose M here: the module 49 will be called de620. 50 51config DL2K 52 tristate "DL2000/TC902x-based Gigabit Ethernet support" 53 depends on PCI 54 select CRC32 55 ---help--- 56 This driver supports DL2000/TC902x-based Gigabit ethernet cards, 57 which includes 58 D-Link DGE-550T Gigabit Ethernet Adapter. 59 D-Link DL2000-based Gigabit Ethernet Adapter. 60 Sundance/Tamarack TC902x Gigabit Ethernet Adapter. 61 62 To compile this driver as a module, choose M here: the 63 module will be called dl2k. 64 65config SUNDANCE 66 tristate "Sundance Alta support" 67 depends on PCI 68 select CRC32 69 select NET_CORE 70 select MII 71 ---help--- 72 This driver is for the Sundance "Alta" chip. 73 More specific information and updates are available from 74 <http://www.scyld.com/network/sundance.html>. 75 76config SUNDANCE_MMIO 77 bool "Use MMIO instead of PIO" 78 depends on SUNDANCE 79 ---help--- 80 Enable memory-mapped I/O for interaction with Sundance NIC registers. 81 Do NOT enable this by default, PIO (enabled when MMIO is disabled) 82 is known to solve bugs on certain chips. 83 84 If unsure, say N. 85 86endif # NET_VENDOR_DLINK 87