Kconfig 890 B

123456789101112131415161718192021222324252627282930313233343536
  1. #
  2. # Allwinner device configuration
  3. #
  4. config NET_VENDOR_ALLWINNER
  5. bool "Allwinner devices"
  6. default y
  7. depends on ARCH_SUNXI
  8. ---help---
  9. If you have a network (Ethernet) card belonging to this
  10. class, say Y here.
  11. Note that the answer to this question doesn't directly
  12. affect the kernel: saying N will just cause the configurator
  13. to skip all the questions about Allwinner cards. If you say Y,
  14. you will be asked for your specific card in the following
  15. questions.
  16. if NET_VENDOR_ALLWINNER
  17. config SUN4I_EMAC
  18. tristate "Allwinner A10 EMAC support"
  19. depends on ARCH_SUNXI
  20. depends on OF
  21. select CRC32
  22. select MII
  23. select PHYLIB
  24. select MDIO_SUN4I
  25. ---help---
  26. Support for Allwinner A10 EMAC ethernet driver.
  27. To compile this driver as a module, choose M here. The module
  28. will be called sun4i-emac.
  29. endif # NET_VENDOR_ALLWINNER