Kconfig 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #
  2. # Sun network device configuration
  3. #
  4. config NET_VENDOR_SUN
  5. bool "Sun devices"
  6. default y
  7. depends on SUN3 || SBUS || PCI || SUN_LDOMS
  8. ---help---
  9. If you have a network (Ethernet) card belonging to this class, say
  10. Y 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 Sun network interfaces. If you say Y, you will be
  15. asked for your specific card in the following questions.
  16. if NET_VENDOR_SUN
  17. config HAPPYMEAL
  18. tristate "Sun Happy Meal 10/100baseT support"
  19. depends on (SBUS || PCI)
  20. select CRC32
  21. ---help---
  22. This driver supports the "hme" interface present on most Ultra
  23. systems and as an option on older Sbus systems. This driver supports
  24. both PCI and Sbus devices. This driver also supports the "qfe" quad
  25. 100baseT device available in both PCI and Sbus configurations.
  26. To compile this driver as a module, choose M here: the module
  27. will be called sunhme.
  28. config SUNBMAC
  29. tristate "Sun BigMAC 10/100baseT support (EXPERIMENTAL)"
  30. depends on SBUS && EXPERIMENTAL
  31. select CRC32
  32. ---help---
  33. This driver supports the "be" interface available as an Sbus option.
  34. This is Sun's older 100baseT Ethernet device.
  35. To compile this driver as a module, choose M here: the module
  36. will be called sunbmac.
  37. config SUNQE
  38. tristate "Sun QuadEthernet support"
  39. depends on SBUS
  40. select CRC32
  41. ---help---
  42. This driver supports the "qe" 10baseT Ethernet device, available as
  43. an Sbus option. Note that this is not the same as Quad FastEthernet
  44. "qfe" which is supported by the Happy Meal driver instead.
  45. To compile this driver as a module, choose M here: the module
  46. will be called sunqe.
  47. config SUNGEM
  48. tristate "Sun GEM support"
  49. depends on PCI
  50. select CRC32
  51. select SUNGEM_PHY
  52. ---help---
  53. Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0. See also
  54. <http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-3985-10.pdf>.
  55. config CASSINI
  56. tristate "Sun Cassini support"
  57. depends on PCI
  58. select CRC32
  59. ---help---
  60. Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also
  61. <http://www.sun.com/products-n-solutions/hardware/docs/pdf/817-4341-10.pdf>
  62. config SUNVNET
  63. tristate "Sun Virtual Network support"
  64. depends on SUN_LDOMS
  65. ---help---
  66. Support for virtual network devices under Sun Logical Domains.
  67. config NIU
  68. tristate "Sun Neptune 10Gbit Ethernet support"
  69. depends on PCI
  70. select CRC32
  71. ---help---
  72. This enables support for cards based upon Sun's
  73. Neptune chipset.
  74. endif # NET_VENDOR_SUN