Kconfig 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. menu "S/390 network device drivers"
  2. depends on NETDEVICES && S390
  3. config LCS
  4. tristate "Lan Channel Station Interface"
  5. depends on CCW && NETDEVICES && (NET_ETHERNET || TR || FDDI)
  6. help
  7. Select this option if you want to use LCS networking on IBM S/390
  8. or zSeries. This device driver supports Token Ring (IEEE 802.5),
  9. FDDI (IEEE 802.7) and Ethernet.
  10. This option is also available as a module which will be
  11. called lcs.ko. If you do not know what it is, it's safe to say "Y".
  12. config CTC
  13. tristate "CTC device support"
  14. depends on CCW && NETDEVICES
  15. help
  16. Select this option if you want to use channel-to-channel networking
  17. on IBM S/390 or zSeries. This device driver supports real CTC
  18. coupling using ESCON. It also supports virtual CTCs when running
  19. under VM. It will use the channel device configuration if this is
  20. available. This option is also available as a module which will be
  21. called ctc.ko. If you do not know what it is, it's safe to say "Y".
  22. config NETIUCV
  23. tristate "IUCV network device support (VM only)"
  24. depends on IUCV && NETDEVICES
  25. help
  26. Select this option if you want to use inter-user communication
  27. vehicle networking under VM or VIF. It enables a fast communication
  28. link between VM guests. Using ifconfig a point-to-point connection
  29. can be established to the Linux for zSeries and S7390 system
  30. running on the other VM guest. This option is also available
  31. as a module which will be called netiucv.ko. If unsure, say "Y".
  32. config SMSGIUCV
  33. tristate "IUCV special message support (VM only)"
  34. depends on IUCV
  35. help
  36. Select this option if you want to be able to receive SMSG messages
  37. from other VM guest systems.
  38. config CLAW
  39. tristate "CLAW device support"
  40. depends on CCW && NETDEVICES
  41. help
  42. This driver supports channel attached CLAW devices.
  43. CLAW is Common Link Access for Workstation. Common devices
  44. that use CLAW are RS/6000s, Cisco Routers (CIP) and 3172 devices.
  45. To compile as a module choose M here: The module will be called
  46. claw.ko to compile into the kernel choose Y
  47. config QETH
  48. tristate "Gigabit Ethernet device support"
  49. depends on CCW && NETDEVICES && IP_MULTICAST && QDIO
  50. help
  51. This driver supports the IBM S/390 and zSeries OSA Express adapters
  52. in QDIO mode (all media types), HiperSockets interfaces and VM GuestLAN
  53. interfaces in QDIO and HIPER mode.
  54. For details please refer to the documentation provided by IBM at
  55. <http://www10.software.ibm.com/developerworks/opensource/linux390>
  56. To compile this driver as a module, choose M here: the
  57. module will be called qeth.ko.
  58. comment "Gigabit Ethernet default settings"
  59. depends on QETH
  60. config QETH_IPV6
  61. bool "IPv6 support for gigabit ethernet"
  62. depends on (QETH = IPV6) || (QETH && IPV6 = 'y')
  63. help
  64. If CONFIG_QETH is switched on, this option will include IPv6
  65. support in the qeth device driver.
  66. config QETH_VLAN
  67. bool "VLAN support for gigabit ethernet"
  68. depends on (QETH = VLAN_8021Q) || (QETH && VLAN_8021Q = 'y')
  69. help
  70. If CONFIG_QETH is switched on, this option will include IEEE
  71. 802.1q VLAN support in the qeth device driver.
  72. config CCWGROUP
  73. tristate
  74. default (LCS || CTC || QETH)
  75. endmenu