Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #
  2. # Microchip network device configuration
  3. #
  4. config NET_VENDOR_MICROCHIP
  5. bool "Microchip devices"
  6. default y
  7. depends on SPI && EXPERIMENTAL
  8. ---help---
  9. If you have a network (Ethernet) card belonging to this class, say Y
  10. and read the Ethernet-HOWTO, available from
  11. <http://www.tldp.org/docs.html#howto>.
  12. Note that the answer to this question doesn't directly affect the
  13. kernel: saying N will just cause the configurator to skip all
  14. the questions about Microchip cards. If you say Y, you will be asked
  15. for your specific card in the following questions.
  16. if NET_VENDOR_MICROCHIP
  17. config ENC28J60
  18. tristate "ENC28J60 support"
  19. depends on SPI && EXPERIMENTAL
  20. select CRC32
  21. ---help---
  22. Support for the Microchip EN28J60 ethernet chip.
  23. To compile this driver as a module, choose M here. The module will be
  24. called enc28j60.
  25. config ENC28J60_WRITEVERIFY
  26. bool "Enable write verify"
  27. depends on ENC28J60
  28. ---help---
  29. Enable the verify after the buffer write useful for debugging purpose.
  30. If unsure, say N.
  31. endif # NET_VENDOR_MICROCHIP