Kconfig 328 B

123456789101112131415161718192021222324
  1. config HAVE_NET_DSA
  2. def_bool y
  3. depends on NETDEVICES && !S390
  4. # Drivers must select NET_DSA and the appropriate tagging format
  5. config NET_DSA
  6. tristate
  7. depends on HAVE_NET_DSA
  8. select PHYLIB
  9. if NET_DSA
  10. # tagging formats
  11. config NET_DSA_TAG_DSA
  12. bool
  13. config NET_DSA_TAG_EDSA
  14. bool
  15. config NET_DSA_TAG_TRAILER
  16. bool
  17. endif