Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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, and rtl8188ae share some common code.
  9. if RTL_CARDS
  10. config RTL8192CE
  11. tristate "Realtek RTL8192CE/RTL8188CE Wireless Network Adapter"
  12. depends on PCI
  13. select RTL8192C_COMMON
  14. select RTLWIFI
  15. select RTLWIFI_PCI
  16. ---help---
  17. This is the driver for Realtek RTL8192CE/RTL8188CE 802.11n PCIe
  18. wireless network adapters.
  19. If you choose to build it as a module, it will be called rtl8192ce
  20. config RTL8192SE
  21. tristate "Realtek RTL8192SE/RTL8191SE PCIe Wireless Network Adapter"
  22. depends on PCI
  23. select RTLWIFI
  24. select RTLWIFI_PCI
  25. ---help---
  26. This is the driver for Realtek RTL8192SE/RTL8191SE 802.11n PCIe
  27. wireless network adapters.
  28. If you choose to build it as a module, it will be called rtl8192se
  29. config RTL8192DE
  30. tristate "Realtek RTL8192DE/RTL8188DE PCIe Wireless Network Adapter"
  31. depends on PCI
  32. select RTLWIFI
  33. select RTLWIFI_PCI
  34. ---help---
  35. This is the driver for Realtek RTL8192DE/RTL8188DE 802.11n PCIe
  36. wireless network adapters.
  37. If you choose to build it as a module, it will be called rtl8192de
  38. config RTL8723AE
  39. tristate "Realtek RTL8723AE PCIe Wireless Network Adapter"
  40. depends on PCI
  41. select RTLWIFI
  42. select RTLWIFI_PCI
  43. select RTL8723_COMMON
  44. select RTLBTCOEXIST
  45. ---help---
  46. This is the driver for Realtek RTL8723AE 802.11n PCIe
  47. wireless network adapters.
  48. If you choose to build it as a module, it will be called rtl8723ae
  49. config RTL8723BE
  50. tristate "Realtek RTL8723BE PCIe Wireless Network Adapter"
  51. depends on PCI
  52. select RTLWIFI
  53. select RTLWIFI_PCI
  54. select RTL8723_COMMON
  55. select RTLBTCOEXIST
  56. ---help---
  57. This is the driver for Realtek RTL8723BE 802.11n PCIe
  58. wireless network adapters.
  59. If you choose to build it as a module, it will be called rtl8723be
  60. config RTL8188EE
  61. tristate "Realtek RTL8188EE Wireless Network Adapter"
  62. depends on PCI
  63. select RTLWIFI
  64. select RTLWIFI_PCI
  65. ---help---
  66. This is the driver for Realtek RTL8188EE 802.11n PCIe
  67. wireless network adapters.
  68. If you choose to build it as a module, it will be called rtl8188ee
  69. config RTL8192CU
  70. tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter"
  71. depends on USB
  72. select RTLWIFI
  73. select RTLWIFI_USB
  74. select RTL8192C_COMMON
  75. ---help---
  76. This is the driver for Realtek RTL8192CU/RTL8188CU 802.11n USB
  77. wireless network adapters.
  78. If you choose to build it as a module, it will be called rtl8192cu
  79. config RTLWIFI
  80. tristate
  81. select FW_LOADER
  82. config RTLWIFI_PCI
  83. tristate
  84. config RTLWIFI_USB
  85. tristate
  86. config RTLWIFI_DEBUG
  87. bool "Debugging output for rtlwifi driver family"
  88. depends on RTLWIFI
  89. default y
  90. ---help---
  91. To use the module option that sets the dynamic-debugging level for,
  92. the front-end driver, this parameter must be "Y". For memory-limited
  93. systems, choose "N". If in doubt, choose "Y".
  94. config RTL8192C_COMMON
  95. tristate
  96. depends on RTL8192CE || RTL8192CU
  97. default y
  98. config RTL8723_COMMON
  99. tristate
  100. depends on RTL8723AE || RTL8723BE
  101. default y
  102. config RTLBTCOEXIST
  103. tristate
  104. depends on RTL8723AE || RTL8723BE
  105. default y
  106. endif