Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #
  2. # Cirrus network device configuration
  3. #
  4. config NET_VENDOR_CIRRUS
  5. bool "Cirrus devices"
  6. default y
  7. depends on ISA || EISA || MACH_IXDP2351 || ARCH_IXDP2X01 \
  8. || MACH_MX31ADS || MACH_QQ2440 || (ARM && ARCH_EP93XX) || MAC
  9. ---help---
  10. If you have a network (Ethernet) card belonging to this class, say Y
  11. and read the Ethernet-HOWTO, available from
  12. <http://www.tldp.org/docs.html#howto>.
  13. Note that the answer to this question doesn't directly affect the
  14. kernel: saying N will just cause the configurator to skip all
  15. the questions about Cirrus cards. If you say Y, you will be asked
  16. for your specific card in the following questions.
  17. if NET_VENDOR_CIRRUS
  18. config CS89x0
  19. tristate "CS89x0 support"
  20. depends on (ISA || EISA || MACH_IXDP2351 \
  21. || ARCH_IXDP2X01 || MACH_MX31ADS || MACH_QQ2440)
  22. ---help---
  23. Support for CS89x0 chipset based Ethernet cards. If you have a
  24. network (Ethernet) card of this type, say Y and read the
  25. Ethernet-HOWTO, available from
  26. <http://www.tldp.org/docs.html#howto> as well as
  27. <file:Documentation/networking/cs89x0.txt>.
  28. To compile this driver as a module, choose M here. The module
  29. will be called cs89x0.
  30. config CS89x0_NONISA_IRQ
  31. def_bool y
  32. depends on CS89x0 != n
  33. depends on MACH_IXDP2351 || ARCH_IXDP2X01 || MACH_MX31ADS || MACH_QQ2440
  34. config EP93XX_ETH
  35. tristate "EP93xx Ethernet support"
  36. depends on ARM && ARCH_EP93XX
  37. select NET_CORE
  38. select MII
  39. help
  40. This is a driver for the ethernet hardware included in EP93xx CPUs.
  41. Say Y if you are building a kernel for EP93xx based devices.
  42. config MAC89x0
  43. tristate "Macintosh CS89x0 based ethernet cards"
  44. depends on MAC
  45. ---help---
  46. Support for CS89x0 chipset based Ethernet cards. If you have a
  47. Nubus or LC-PDS network (Ethernet) card of this type, say Y and
  48. read the Ethernet-HOWTO, available from
  49. <http://www.tldp.org/docs.html#howto>.
  50. To compile this driver as a module, choose M here. This module will
  51. be called mac89x0.
  52. endif # NET_VENDOR_CIRRUS