Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 MII
  23. ---help---
  24. If you wish to compile a kernel for the AT91RM9200 and enable
  25. ethernet support, then you should always answer Y to this.
  26. config MACB
  27. tristate "Atmel MACB support"
  28. depends on HAVE_NET_MACB
  29. select PHYLIB
  30. ---help---
  31. The Atmel MACB ethernet interface is found on many AT32 and AT91
  32. parts. Say Y to include support for the MACB chip.
  33. To compile this driver as a module, choose M here: the module
  34. will be called macb.
  35. endif # NET_ATMEL