Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # Packet engine device configuration
  3. #
  4. config NET_PACKET_ENGINE
  5. bool "Packet Engine devices"
  6. default y
  7. depends on PCI
  8. ---help---
  9. If you have a network (Ethernet) card belonging to this class, say Y.
  10. Note that the answer to this question doesn't directly affect the
  11. kernel: saying N will just cause the configurator to skip all
  12. the questions about packet engine devices. If you say Y, you will
  13. be asked for your specific card in the following questions.
  14. if NET_PACKET_ENGINE
  15. config HAMACHI
  16. tristate "Packet Engines Hamachi GNIC-II support"
  17. depends on PCI
  18. select MII
  19. ---help---
  20. If you have a Gigabit Ethernet card of this type, say Y here.
  21. To compile this driver as a module, choose M here. The module will be
  22. called hamachi.
  23. config YELLOWFIN
  24. tristate "Packet Engines Yellowfin Gigabit-NIC support"
  25. depends on PCI
  26. select CRC32
  27. ---help---
  28. Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
  29. adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is
  30. used by the Beowulf Linux cluster project. See
  31. <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
  32. information about this driver in particular and Beowulf in general.
  33. To compile this driver as a module, choose M here: the module
  34. will be called yellowfin. This is recommended.
  35. endif # NET_PACKET_ENGINE