Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # Faraday device configuration
  3. #
  4. config NET_VENDOR_FARADAY
  5. bool "Faraday devices"
  6. default y
  7. depends on ARM || NDS32 || COMPILE_TEST
  8. ---help---
  9. If you have a network (Ethernet) card belonging to this class, say Y.
  10. Note that the answer to this question doesn't directly affect the
  11. kernel: saying N will just cause the configurator to skip all
  12. the questions about Faraday cards. If you say Y, you will be asked for
  13. your specific card in the following questions.
  14. if NET_VENDOR_FARADAY
  15. config FTMAC100
  16. tristate "Faraday FTMAC100 10/100 Ethernet support"
  17. depends on ARM || NDS32 || COMPILE_TEST
  18. depends on !64BIT || BROKEN
  19. select MII
  20. ---help---
  21. This driver supports the FTMAC100 10/100 Ethernet controller
  22. from Faraday. It is used on Faraday A320, Andes AG101 and some
  23. other ARM/NDS32 SoC's.
  24. config FTGMAC100
  25. tristate "Faraday FTGMAC100 Gigabit Ethernet support"
  26. depends on ARM || NDS32 || COMPILE_TEST
  27. depends on !64BIT || BROKEN
  28. select PHYLIB
  29. ---help---
  30. This driver supports the FTGMAC100 Gigabit Ethernet controller
  31. from Faraday. It is used on Faraday A369, Andes AG102 and some
  32. other ARM/NDS32 SoC's.
  33. endif # NET_VENDOR_FARADAY