Kconfig 595 B

12345678910111213141516171819202122232425262728293031
  1. menuconfig NET_DSA
  2. bool "Distributed Switch Architecture support"
  3. default n
  4. depends on EXPERIMENTAL
  5. ---help---
  6. This allows you to use hardware switch chips that use
  7. the Distributed Switch Architecture.
  8. if NET_DSA
  9. # tagging formats
  10. config NET_DSA_TAG_EDSA
  11. bool
  12. default n
  13. # switch drivers
  14. config NET_DSA_MV88E6XXX
  15. bool
  16. default n
  17. config NET_DSA_MV88E6123_61_65
  18. bool "Marvell 88E6123/6161/6165 ethernet switch chip support"
  19. select NET_DSA_MV88E6XXX
  20. select NET_DSA_TAG_EDSA
  21. ---help---
  22. This enables support for the Marvell 88E6123/6161/6165
  23. ethernet switch chips.
  24. endif