Kconfig 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # PHY Layer Configuration
  3. #
  4. menu "PHY device support"
  5. config PHYLIB
  6. tristate "PHY Device support and infrastructure"
  7. depends on NET_ETHERNET && (BROKEN || !S390)
  8. help
  9. Ethernet controllers are usually attached to PHY
  10. devices. This option provides infrastructure for
  11. managing PHY devices.
  12. comment "MII PHY device drivers"
  13. depends on PHYLIB
  14. config MARVELL_PHY
  15. tristate "Drivers for Marvell PHYs"
  16. depends on PHYLIB
  17. ---help---
  18. Currently has a driver for the 88E1011S
  19. config DAVICOM_PHY
  20. tristate "Drivers for Davicom PHYs"
  21. depends on PHYLIB
  22. ---help---
  23. Currently supports dm9161e and dm9131
  24. config QSEMI_PHY
  25. tristate "Drivers for Quality Semiconductor PHYs"
  26. depends on PHYLIB
  27. ---help---
  28. Currently supports the qs6612
  29. config LXT_PHY
  30. tristate "Drivers for the Intel LXT PHYs"
  31. depends on PHYLIB
  32. ---help---
  33. Currently supports the lxt970, lxt971
  34. config CICADA_PHY
  35. tristate "Drivers for the Cicada PHYs"
  36. depends on PHYLIB
  37. ---help---
  38. Currently supports the cis8204
  39. endmenu