Kconfig 735 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. config HAVE_NET_DSA
  2. def_bool y
  3. depends on INET && NETDEVICES && !S390
  4. # Drivers must select NET_DSA and the appropriate tagging format
  5. config NET_DSA
  6. tristate "Distributed Switch Architecture"
  7. depends on HAVE_NET_DSA && MAY_USE_DEVLINK
  8. select NET_SWITCHDEV
  9. select PHYLIB
  10. ---help---
  11. Say Y if you want to enable support for the hardware switches supported
  12. by the Distributed Switch Architecture.
  13. if NET_DSA
  14. # tagging formats
  15. config NET_DSA_TAG_BRCM
  16. bool
  17. config NET_DSA_TAG_BRCM_PREPEND
  18. bool
  19. config NET_DSA_TAG_DSA
  20. bool
  21. config NET_DSA_TAG_EDSA
  22. bool
  23. config NET_DSA_TAG_KSZ
  24. bool
  25. config NET_DSA_TAG_LAN9303
  26. bool
  27. config NET_DSA_TAG_MTK
  28. bool
  29. config NET_DSA_TAG_TRAILER
  30. bool
  31. config NET_DSA_TAG_QCA
  32. bool
  33. endif