Kconfig 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. menu "S/390 network device drivers"
  2. depends on NETDEVICES && S390
  3. config LCS
  4. tristate "Lan Channel Station Interface"
  5. depends on 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 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 IUCV
  23. tristate "IUCV support (VM only)"
  24. help
  25. Select this option if you want to use inter-user communication
  26. under VM or VIF. If unsure, say "Y" to enable a fast communication
  27. link between VM guests. At boot time the user ID of the guest needs
  28. to be passed to the kernel. Note that both kernels need to be
  29. compiled with this option and both need to be booted with the user ID
  30. of the other VM guest.
  31. config NETIUCV
  32. tristate "IUCV network device support (VM only)"
  33. depends on IUCV && NETDEVICES
  34. help
  35. Select this option if you want to use inter-user communication
  36. vehicle networking under VM or VIF. It enables a fast communication
  37. link between VM guests. Using ifconfig a point-to-point connection
  38. can be established to the Linux for zSeries and S7390 system
  39. running on the other VM guest. This option is also available
  40. as a module which will be called netiucv.ko. If unsure, say "Y".
  41. config SMSGIUCV
  42. tristate "IUCV special message support (VM only)"
  43. depends on IUCV
  44. help
  45. Select this option if you want to be able to receive SMSG messages
  46. from other VM guest systems.
  47. config CLAW
  48. tristate "CLAW device support"
  49. depends on NETDEVICES
  50. help
  51. This driver supports channel attached CLAW devices.
  52. CLAW is Common Link Access for Workstation. Common devices
  53. that use CLAW are RS/6000s, Cisco Routers (CIP) and 3172 devices.
  54. To compile as a module choose M here: The module will be called
  55. claw.ko to compile into the kernel choose Y
  56. config QETH
  57. tristate "Gigabit Ethernet device support"
  58. depends on NETDEVICES && IP_MULTICAST && QDIO
  59. help
  60. This driver supports the IBM S/390 and zSeries OSA Express adapters
  61. in QDIO mode (all media types), HiperSockets interfaces and VM GuestLAN
  62. interfaces in QDIO and HIPER mode.
  63. For details please refer to the documentation provided by IBM at
  64. <http://www10.software.ibm.com/developerworks/opensource/linux390>
  65. To compile this driver as a module, choose M here: the
  66. module will be called qeth.ko.
  67. comment "Gigabit Ethernet default settings"
  68. depends on QETH
  69. config QETH_IPV6
  70. bool "IPv6 support for gigabit ethernet"
  71. depends on (QETH = IPV6) || (QETH && IPV6 = 'y')
  72. help
  73. If CONFIG_QETH is switched on, this option will include IPv6
  74. support in the qeth device driver.
  75. config QETH_VLAN
  76. bool "VLAN support for gigabit ethernet"
  77. depends on (QETH = VLAN_8021Q) || (QETH && VLAN_8021Q = 'y')
  78. help
  79. If CONFIG_QETH is switched on, this option will include IEEE
  80. 802.1q VLAN support in the qeth device driver.
  81. config QETH_PERF_STATS
  82. bool "Performance statistics in /proc"
  83. depends on QETH
  84. help
  85. When switched on, this option will add a file in the proc-fs
  86. (/proc/qeth_perf_stats) containing performance statistics. It
  87. may slightly impact performance, so this is only recommended for
  88. internal tuning of the device driver.
  89. config CCWGROUP
  90. tristate
  91. default (LCS || CTC || QETH)
  92. endmenu