Kconfig 885 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # ARC EMAC network device configuration
  3. #
  4. config NET_VENDOR_ARC
  5. bool "ARC devices"
  6. default y
  7. ---help---
  8. If you have a network (Ethernet) card belonging to this class, say Y
  9. and read the Ethernet-HOWTO, available from
  10. <http://www.tldp.org/docs.html#howto>.
  11. Note that the answer to this question doesn't directly affect the
  12. kernel: saying N will just cause the configurator to skip all
  13. the questions about ARC cards. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_ARC
  16. config ARC_EMAC
  17. tristate "ARC EMAC support"
  18. select MII
  19. select PHYLIB
  20. depends on OF_IRQ
  21. depends on OF_NET
  22. ---help---
  23. On some legacy ARC (Synopsys) FPGA boards such as ARCAngel4/ML50x
  24. non-standard on-chip ethernet device ARC EMAC 10/100 is used.
  25. Say Y here if you have such a board. If unsure, say N.
  26. endif # NET_VENDOR_ARC