1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Wangxun network device configuration 4# 5 6config NET_VENDOR_WANGXUN 7 bool "Wangxun devices" 8 default y 9 help 10 If you have a network (Ethernet) card from Wangxun(R), say Y. 11 12 Note that the answer to this question doesn't directly affect the 13 kernel: saying N will just cause the configurator to skip all 14 the questions about Wangxun(R) cards. If you say Y, you will 15 be asked for your specific card in the following questions. 16 17if NET_VENDOR_WANGXUN 18 19config LIBWX 20 tristate 21 help 22 Common library for Wangxun(R) Ethernet drivers. 23 24config NGBE 25 tristate "Wangxun(R) GbE PCI Express adapters support" 26 depends on PCI 27 select LIBWX 28 help 29 This driver supports Wangxun(R) GbE PCI Express family of 30 adapters. 31 32 More specific information on configuring the driver is in 33 <file:Documentation/networking/device_drivers/ethernet/wangxun/ngbe.rst>. 34 35 To compile this driver as a module, choose M here. The module 36 will be called ngbe. 37 38config TXGBE 39 tristate "Wangxun(R) 10GbE PCI Express adapters support" 40 depends on PCI 41 select LIBWX 42 help 43 This driver supports Wangxun(R) 10GbE PCI Express family of 44 adapters. 45 46 More specific information on configuring the driver is in 47 <file:Documentation/networking/device_drivers/ethernet/wangxun/txgbe.rst>. 48 49 To compile this driver as a module, choose M here. The module 50 will be called txgbe. 51 52endif # NET_VENDOR_WANGXUN 53