Kconfig 2.7 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, and rtl8188ae 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 RTLBTCOEXIST
52 53 54 55 56 57
	---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

58 59
config RTL8188EE
	tristate "Realtek RTL8188EE Wireless Network Adapter"
60 61 62
	depends on PCI
	select RTLWIFI
	select RTLWIFI_PCI
63 64 65 66 67 68
	---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

69 70
config RTL8192CU
	tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter"
71 72 73
	depends on USB
	select RTLWIFI
	select RTLWIFI_USB
74
	select RTL8192C_COMMON
75 76 77 78 79 80
	---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

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
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".

100 101
config RTL8192C_COMMON
	tristate
102
	depends on RTL8192CE || RTL8192CU
103 104
	default y

105 106 107 108 109
config RTLBTCOEXIST
	tristate
	depends on RTL8723AE
	default y

110
endif