Kconfig 3.2 KB

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