Kconfig 570 B

12345678910111213141516171819202122232425262728
  1. config NET_DSA
  2. tristate
  3. default n
  4. depends on EXPERIMENTAL && NETDEVICES && !S390
  5. select PHYLIB
  6. ---help---
  7. This allows you to use hardware switch chips that use
  8. the Distributed Switch Architecture.
  9. menu "Distributed Switch Architecture support"
  10. # tagging formats
  11. config NET_DSA_TAG_DSA
  12. bool "Original DSA packet tagging format"
  13. select NET_DSA
  14. default n
  15. config NET_DSA_TAG_EDSA
  16. bool "Ethertype DSA packet tagging format"
  17. select NET_DSA
  18. default n
  19. config NET_DSA_TAG_TRAILER
  20. bool "Trailer DSA packet tagging format"
  21. select NET_DSA
  22. default n
  23. endmenu