Kconfig 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. menu "S/390 network device drivers"
  2. depends on NETDEVICES && S390
  3. config LCS
  4. def_tristate m
  5. prompt "Lan Channel Station Interface"
  6. depends on CCW && NETDEVICES && (ETHERNET || TR || FDDI)
  7. help
  8. Select this option if you want to use LCS networking on IBM System z.
  9. This device driver supports Token Ring (IEEE 802.5),
  10. FDDI (IEEE 802.7) and Ethernet.
  11. To compile as a module, choose M. The module name is lcs.
  12. If you do not know what it is, it's safe to choose Y.
  13. config CTCM
  14. def_tristate m
  15. prompt "CTC and MPC SNA device support"
  16. depends on CCW && NETDEVICES
  17. help
  18. Select this option if you want to use channel-to-channel
  19. point-to-point networking on IBM System z.
  20. This device driver supports real CTC coupling using ESCON.
  21. It also supports virtual CTCs when running under VM.
  22. This driver also supports channel-to-channel MPC SNA devices.
  23. MPC is an SNA protocol device used by Communication Server for Linux.
  24. To compile as a module, choose M. The module name is ctcm.
  25. To compile into the kernel, choose Y.
  26. If you do not need any channel-to-channel connection, choose N.
  27. config NETIUCV
  28. def_tristate m
  29. prompt "IUCV network device support (VM only)"
  30. depends on IUCV && NETDEVICES
  31. help
  32. Select this option if you want to use inter-user communication
  33. vehicle networking under VM or VIF. It enables a fast communication
  34. link between VM guests. Using ifconfig a point-to-point connection
  35. can be established to the Linux on IBM System z
  36. running on the other VM guest. To compile as a module, choose M.
  37. The module name is netiucv. If unsure, choose Y.
  38. config SMSGIUCV
  39. def_tristate m
  40. prompt "IUCV special message support (VM only)"
  41. depends on IUCV
  42. help
  43. Select this option if you want to be able to receive SMSG messages
  44. from other VM guest systems.
  45. config SMSGIUCV_EVENT
  46. def_tristate m
  47. prompt "Deliver IUCV special messages as uevents (VM only)"
  48. depends on SMSGIUCV
  49. help
  50. Select this option to deliver CP special messages (SMSGs) as
  51. uevents. The driver handles only those special messages that
  52. start with "APP".
  53. To compile as a module, choose M. The module name is "smsgiucv_app".
  54. config CLAW
  55. def_tristate m
  56. prompt "CLAW device support"
  57. depends on CCW && NETDEVICES
  58. help
  59. This driver supports channel attached CLAW devices.
  60. CLAW is Common Link Access for Workstation. Common devices
  61. that use CLAW are RS/6000s, Cisco Routers (CIP) and 3172 devices.
  62. To compile as a module, choose M. The module name is claw.
  63. To compile into the kernel, choose Y.
  64. config QETH
  65. def_tristate y
  66. prompt "Gigabit Ethernet device support"
  67. depends on CCW && NETDEVICES && IP_MULTICAST && QDIO
  68. help
  69. This driver supports the IBM System z OSA Express adapters
  70. in QDIO mode (all media types), HiperSockets interfaces and VM GuestLAN
  71. interfaces in QDIO and HIPER mode.
  72. For details please refer to the documentation provided by IBM at
  73. <http://www.ibm.com/developerworks/linux/linux390>
  74. To compile this driver as a module, choose M.
  75. The module name is qeth.
  76. config QETH_L2
  77. def_tristate y
  78. prompt "qeth layer 2 device support"
  79. depends on QETH
  80. help
  81. Select this option to be able to run qeth devices in layer 2 mode.
  82. To compile as a module, choose M. The module name is qeth_l2.
  83. If unsure, choose y.
  84. config QETH_L3
  85. def_tristate y
  86. prompt "qeth layer 3 device support"
  87. depends on QETH
  88. help
  89. Select this option to be able to run qeth devices in layer 3 mode.
  90. To compile as a module choose M. The module name is qeth_l3.
  91. If unsure, choose Y.
  92. config QETH_IPV6
  93. def_bool y if (QETH_L3 = IPV6) || (QETH_L3 && IPV6 = 'y')
  94. config CCWGROUP
  95. tristate
  96. default (LCS || CTCM || QETH || CLAW)
  97. endmenu