Kconfig 636 B

1234567891011121314151617181920212223242526272829303132333435
  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_DSA
  11. bool
  12. default n
  13. config NET_DSA_TAG_EDSA
  14. bool
  15. default n
  16. # switch drivers
  17. config NET_DSA_MV88E6XXX
  18. bool
  19. default n
  20. config NET_DSA_MV88E6123_61_65
  21. bool "Marvell 88E6123/6161/6165 ethernet switch chip support"
  22. select NET_DSA_MV88E6XXX
  23. select NET_DSA_TAG_EDSA
  24. ---help---
  25. This enables support for the Marvell 88E6123/6161/6165
  26. ethernet switch chips.
  27. endif