52 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# IBM device configuration.4#5 6config NET_VENDOR_IBM7 bool "IBM devices"8 default y9 depends on PPC_PSERIES || PPC_DCR || (IBMEBUS && SPARSEMEM)10 help11 If you have a network (Ethernet) card belonging to this class, say Y.12 13 Note that the answer to this question doesn't directly affect the14 kernel: saying N will just cause the configurator to skip all15 the questions about IBM devices. If you say Y, you will be asked for16 your specific card in the following questions.17 18if NET_VENDOR_IBM19 20config IBMVETH21 tristate "IBM LAN Virtual Ethernet support"22 depends on PPC_PSERIES23 help24 This driver supports virtual ethernet adapters on newer IBM iSeries25 and pSeries systems.26 27 To compile this driver as a module, choose M here. The module will28 be called ibmveth.29 30source "drivers/net/ethernet/ibm/emac/Kconfig"31 32config EHEA33 tristate "eHEA Ethernet support"34 depends on IBMEBUS && SPARSEMEM35 help36 This driver supports the IBM pSeries eHEA ethernet adapter.37 38 To compile the driver as a module, choose M here. The module39 will be called ehea.40 41config IBMVNIC42 tristate "IBM Virtual NIC support"43 depends on PPC_PSERIES44 help45 This driver supports Virtual NIC adapters on IBM i and IBM System p46 systems.47 48 To compile this driver as a module, choose M here. The module will49 be called ibmvnic.50 51endif # NET_VENDOR_IBM52