Kconfig 3.5 KB
Newer Older
1 2 3
menuconfig RTL_CARDS
	tristate "Realtek rtlwifi family of devices"
	depends on MAC80211 && (PCI || USB)
L
Larry Finger 已提交
4 5
	default y
	---help---
6 7
	  This option will enable support for the Realtek mac80211-based
	  wireless drivers. Drivers rtl8192ce, rtl8192cu, rtl8192se, rtl8192de,
8
	  rtl8723ae, rtl8723be, rtl8188ee, and rtl8821ae share some common code.
9 10

if RTL_CARDS
L
Larry Finger 已提交
11

L
Larry Finger 已提交
12
config RTL8192CE
13
	tristate "Realtek RTL8192CE/RTL8188CE Wireless Network Adapter"
14
	depends on PCI
15
	select RTL8192C_COMMON
16 17
	select RTLWIFI
	select RTLWIFI_PCI
L
Larry Finger 已提交
18 19 20 21
	---help---
	This is the driver for Realtek RTL8192CE/RTL8188CE 802.11n PCIe
	wireless network adapters.

22
	If you choose to build it as a module, it will be called rtl8192ce
L
Larry Finger 已提交
23

24 25
config RTL8192SE
	tristate "Realtek RTL8192SE/RTL8191SE PCIe Wireless Network Adapter"
26 27 28
	depends on PCI
	select RTLWIFI
	select RTLWIFI_PCI
29 30 31 32 33 34
	---help---
	This is the driver for Realtek RTL8192SE/RTL8191SE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8192se

35 36
config RTL8192DE
	tristate "Realtek RTL8192DE/RTL8188DE PCIe Wireless Network Adapter"
37 38 39
	depends on PCI
	select RTLWIFI
	select RTLWIFI_PCI
40 41 42 43 44 45
	---help---
	This is the driver for Realtek RTL8192DE/RTL8188DE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8192de

46 47
config RTL8723AE
	tristate "Realtek RTL8723AE PCIe Wireless Network Adapter"
48 49 50
	depends on PCI
	select RTLWIFI
	select RTLWIFI_PCI
51
	select RTL8723_COMMON
52
	select RTLBTCOEXIST
53 54 55 56 57 58
	---help---
	This is the driver for Realtek RTL8723AE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8723ae

59 60 61 62 63 64 65 66 67 68 69 70 71
config RTL8723BE
	tristate "Realtek RTL8723BE PCIe Wireless Network Adapter"
	depends on PCI
	select RTLWIFI
	select RTLWIFI_PCI
	select RTL8723_COMMON
	select RTLBTCOEXIST
	---help---
	This is the driver for Realtek RTL8723BE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8723be

72 73
config RTL8188EE
	tristate "Realtek RTL8188EE Wireless Network Adapter"
74 75 76
	depends on PCI
	select RTLWIFI
	select RTLWIFI_PCI
77 78 79 80 81 82
	---help---
	This is the driver for Realtek RTL8188EE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8188ee

83 84 85 86 87 88 89 90 91 92 93
config RTL8821AE
	tristate "Realtek RTL8821AE/RTL8812AE Wireless Network Adapter"
	depends on PCI
	select RTLWIFI
	select RTLWIFI_PCI
	---help---
	This is the driver for Realtek RTL8i821AE/RTL8812AE 802.11av PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8821ae

94 95
config RTL8192CU
	tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter"
96 97 98
	depends on USB
	select RTLWIFI
	select RTLWIFI_USB
99
	select RTL8192C_COMMON
100 101 102 103 104 105
	---help---
	This is the driver for Realtek RTL8192CU/RTL8188CU 802.11n USB
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8192cu

106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
config RTLWIFI
	tristate
	select FW_LOADER

config RTLWIFI_PCI
	tristate

config RTLWIFI_USB
	tristate

config RTLWIFI_DEBUG
	bool "Debugging output for rtlwifi driver family"
	depends on RTLWIFI
	default y
	---help---
	To use the module option that sets the dynamic-debugging level for,
	the front-end driver, this parameter must be "Y". For memory-limited
	systems, choose "N". If in doubt, choose "Y".

125 126
config RTL8192C_COMMON
	tristate
127
	depends on RTL8192CE || RTL8192CU
128 129
	default y

130 131
config RTL8723_COMMON
	tristate
132
	depends on RTL8723AE || RTL8723BE
133 134
	default y

135 136
config RTLBTCOEXIST
	tristate
137
	depends on RTL8723AE || RTL8723BE
138 139
	default y

140
endif