Kconfig 3.0 KB

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