Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #
  2. # Atheros device configuration
  3. #
  4. config NET_VENDOR_ATHEROS
  5. bool "Atheros 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 Atheros devices. If you say Y, you will be asked
  15. for your specific card in the following questions.
  16. if NET_VENDOR_ATHEROS
  17. config ATL2
  18. tristate "Atheros L2 Fast Ethernet support"
  19. depends on PCI
  20. select CRC32
  21. select NET_CORE
  22. select MII
  23. ---help---
  24. This driver supports the Atheros L2 fast ethernet adapter.
  25. To compile this driver as a module, choose M here. The module
  26. will be called atl2.
  27. config ATL1
  28. tristate "Atheros/Attansic L1 Gigabit Ethernet support"
  29. depends on PCI
  30. select CRC32
  31. select NET_CORE
  32. select MII
  33. ---help---
  34. This driver supports the Atheros/Attansic L1 gigabit ethernet
  35. adapter.
  36. To compile this driver as a module, choose M here. The module
  37. will be called atl1.
  38. config ATL1E
  39. tristate "Atheros L1E Gigabit Ethernet support (EXPERIMENTAL)"
  40. depends on PCI && EXPERIMENTAL
  41. select CRC32
  42. select NET_CORE
  43. select MII
  44. ---help---
  45. This driver supports the Atheros L1E gigabit ethernet adapter.
  46. To compile this driver as a module, choose M here. The module
  47. will be called atl1e.
  48. config ATL1C
  49. tristate "Atheros L1C Gigabit Ethernet support (EXPERIMENTAL)"
  50. depends on PCI && EXPERIMENTAL
  51. select CRC32
  52. select NET_CORE
  53. select MII
  54. ---help---
  55. This driver supports the Atheros L1C gigabit ethernet adapter.
  56. To compile this driver as a module, choose M here. The module
  57. will be called atl1c.
  58. endif # NET_VENDOR_ATHEROS