Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 MII
  22. ---help---
  23. This driver supports the Atheros L2 fast ethernet adapter.
  24. To compile this driver as a module, choose M here. The module
  25. will be called atl2.
  26. config ATL1
  27. tristate "Atheros/Attansic L1 Gigabit Ethernet support"
  28. depends on PCI
  29. select CRC32
  30. select MII
  31. ---help---
  32. This driver supports the Atheros/Attansic L1 gigabit ethernet
  33. adapter.
  34. To compile this driver as a module, choose M here. The module
  35. will be called atl1.
  36. config ATL1E
  37. tristate "Atheros L1E Gigabit Ethernet support"
  38. depends on PCI
  39. select CRC32
  40. select MII
  41. ---help---
  42. This driver supports the Atheros L1E gigabit ethernet adapter.
  43. To compile this driver as a module, choose M here. The module
  44. will be called atl1e.
  45. config ATL1C
  46. tristate "Atheros L1C Gigabit Ethernet support"
  47. depends on PCI
  48. select CRC32
  49. select MII
  50. ---help---
  51. This driver supports the Atheros L1C gigabit ethernet adapter.
  52. To compile this driver as a module, choose M here. The module
  53. will be called atl1c.
  54. config ALX
  55. tristate "Qualcomm Atheros AR816x/AR817x support"
  56. depends on PCI
  57. select CRC32
  58. select MDIO
  59. help
  60. This driver supports the Qualcomm Atheros L1F ethernet adapter,
  61. i.e. the following chipsets:
  62. 1969:1091 - AR8161 Gigabit Ethernet
  63. 1969:1090 - AR8162 Fast Ethernet
  64. 1969:10A1 - AR8171 Gigabit Ethernet
  65. 1969:10A0 - AR8172 Fast Ethernet
  66. To compile this driver as a module, choose M here. The module
  67. will be called alx.
  68. endif # NET_VENDOR_ATHEROS