Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # Atmel device configuration
  3. #
  4. config HAVE_NET_MACB
  5. bool
  6. config NET_ATMEL
  7. bool "Atmel devices"
  8. depends on HAVE_NET_MACB || (ARM && ARCH_AT91RM9200)
  9. ---help---
  10. If you have a network (Ethernet) card belonging to this class, say Y.
  11. Make sure you know the name of your card. Read the Ethernet-HOWTO,
  12. available from <http://www.tldp.org/docs.html#howto>.
  13. If unsure, say Y.
  14. Note that the answer to this question doesn't directly affect the
  15. kernel: saying N will just cause the configurator to skip all
  16. the remaining Atmel network card questions. If you say Y, you will be
  17. asked for your specific card in the following questions.
  18. if NET_ATMEL
  19. config ARM_AT91_ETHER
  20. tristate "AT91RM9200 Ethernet support"
  21. depends on ARM && ARCH_AT91RM9200
  22. select NET_CORE
  23. select MII
  24. ---help---
  25. If you wish to compile a kernel for the AT91RM9200 and enable
  26. ethernet support, then you should always answer Y to this.
  27. config MACB
  28. tristate "Atmel MACB support"
  29. depends on HAVE_NET_MACB
  30. select PHYLIB
  31. ---help---
  32. The Atmel MACB ethernet interface is found on many AT32 and AT91
  33. parts. Say Y to include support for the MACB chip.
  34. To compile this driver as a module, choose M here: the module
  35. will be called macb.
  36. endif # NET_ATMEL