Kconfig 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. menuconfig RTL_CARDS
  2. tristate "Realtek rtlwifi family of devices"
  3. depends on MAC80211 && (PCI || USB)
  4. default y
  5. ---help---
  6. This option will enable support for the Realtek mac80211-based
  7. wireless drivers. Drivers rtl8192ce, rtl8192cu, rtl8192se, rtl8192de,
  8. rtl8723ae, rtl8723be, rtl8188ee, rtl8192ee, and rtl8821ae share
  9. some common code.
  10. if RTL_CARDS
  11. config RTL8192CE
  12. tristate "Realtek RTL8192CE/RTL8188CE Wireless Network Adapter"
  13. depends on PCI
  14. select RTL8192C_COMMON
  15. select RTLWIFI
  16. select RTLWIFI_PCI
  17. ---help---
  18. This is the driver for Realtek RTL8192CE/RTL8188CE 802.11n PCIe
  19. wireless network adapters.
  20. If you choose to build it as a module, it will be called rtl8192ce
  21. config RTL8192SE
  22. tristate "Realtek RTL8192SE/RTL8191SE PCIe Wireless Network Adapter"
  23. depends on PCI
  24. select RTLWIFI
  25. select RTLWIFI_PCI
  26. ---help---
  27. This is the driver for Realtek RTL8192SE/RTL8191SE 802.11n PCIe
  28. wireless network adapters.
  29. If you choose to build it as a module, it will be called rtl8192se
  30. config RTL8192DE
  31. tristate "Realtek RTL8192DE/RTL8188DE PCIe Wireless Network Adapter"
  32. depends on PCI
  33. select RTLWIFI
  34. select RTLWIFI_PCI
  35. ---help---
  36. This is the driver for Realtek RTL8192DE/RTL8188DE 802.11n PCIe
  37. wireless network adapters.
  38. If you choose to build it as a module, it will be called rtl8192de
  39. config RTL8723AE
  40. tristate "Realtek RTL8723AE PCIe Wireless Network Adapter"
  41. depends on PCI
  42. select RTLWIFI
  43. select RTLWIFI_PCI
  44. select RTL8723_COMMON
  45. select RTLBTCOEXIST
  46. ---help---
  47. This is the driver for Realtek RTL8723AE 802.11n PCIe
  48. wireless network adapters.
  49. If you choose to build it as a module, it will be called rtl8723ae
  50. config RTL8723BE
  51. tristate "Realtek RTL8723BE PCIe Wireless Network Adapter"
  52. depends on PCI
  53. select RTLWIFI
  54. select RTLWIFI_PCI
  55. select RTL8723_COMMON
  56. select RTLBTCOEXIST
  57. ---help---
  58. This is the driver for Realtek RTL8723BE 802.11n PCIe
  59. wireless network adapters.
  60. If you choose to build it as a module, it will be called rtl8723be
  61. config RTL8188EE
  62. tristate "Realtek RTL8188EE Wireless Network Adapter"
  63. depends on PCI
  64. select RTLWIFI
  65. select RTLWIFI_PCI
  66. ---help---
  67. This is the driver for Realtek RTL8188EE 802.11n PCIe
  68. wireless network adapters.
  69. If you choose to build it as a module, it will be called rtl8188ee
  70. config RTL8192EE
  71. tristate "Realtek RTL8192EE Wireless Network Adapter"
  72. depends on PCI
  73. select RTLWIFI
  74. select RTLWIFI_PCI
  75. select RTLBTCOEXIST
  76. ---help---
  77. This is the driver for Realtek RTL8192EE 802.11n PCIe
  78. wireless network adapters.
  79. If you choose to build it as a module, it will be called rtl8192ee
  80. config RTL8821AE
  81. tristate "Realtek RTL8821AE/RTL8812AE Wireless Network Adapter"
  82. depends on PCI
  83. select RTLWIFI
  84. select RTLWIFI_PCI
  85. select RTLBTCOEXIST
  86. ---help---
  87. This is the driver for Realtek RTL8821AE/RTL8812AE 802.11ac PCIe
  88. wireless network adapters.
  89. If you choose to build it as a module, it will be called rtl8821ae
  90. config RTL8192CU
  91. tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter"
  92. depends on USB
  93. select RTLWIFI
  94. select RTLWIFI_USB
  95. select RTL8192C_COMMON
  96. ---help---
  97. This is the driver for Realtek RTL8192CU/RTL8188CU 802.11n USB
  98. wireless network adapters.
  99. If you choose to build it as a module, it will be called rtl8192cu
  100. config RTLWIFI
  101. tristate
  102. select FW_LOADER
  103. config RTLWIFI_PCI
  104. tristate
  105. config RTLWIFI_USB
  106. tristate
  107. config RTLWIFI_DEBUG
  108. bool "Debugging output for rtlwifi driver family"
  109. depends on RTLWIFI
  110. default y
  111. ---help---
  112. To use the module option that sets the dynamic-debugging level for,
  113. the front-end driver, this parameter must be "Y". For memory-limited
  114. systems, choose "N". If in doubt, choose "Y".
  115. config RTL8192C_COMMON
  116. tristate
  117. depends on RTL8192CE || RTL8192CU
  118. default y
  119. config RTL8723_COMMON
  120. tristate
  121. depends on RTL8723AE || RTL8723BE
  122. default y
  123. config RTLBTCOEXIST
  124. tristate
  125. depends on RTL8723AE || RTL8723BE || RTL8821AE || RTL8192EE
  126. default y
  127. endif