Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. rtl8723eu, and rtl8188eu 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. ---help---
  44. This is the driver for Realtek RTL8723AE 802.11n PCIe
  45. wireless network adapters.
  46. If you choose to build it as a module, it will be called rtl8723ae
  47. config RTL8188EE
  48. tristate "Realtek RTL8188EE Wireless Network Adapter"
  49. depends on PCI
  50. select RTLWIFI
  51. select RTLWIFI_PCI
  52. ---help---
  53. This is the driver for Realtek RTL8188EE 802.11n PCIe
  54. wireless network adapters.
  55. If you choose to build it as a module, it will be called rtl8188ee
  56. config RTL8192CU
  57. tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter"
  58. depends on USB
  59. select RTLWIFI
  60. select RTLWIFI_USB
  61. select RTL8192C_COMMON
  62. ---help---
  63. This is the driver for Realtek RTL8192CU/RTL8188CU 802.11n USB
  64. wireless network adapters.
  65. If you choose to build it as a module, it will be called rtl8192cu
  66. config RTLWIFI
  67. tristate
  68. select FW_LOADER
  69. config RTLWIFI_PCI
  70. tristate
  71. config RTLWIFI_USB
  72. tristate
  73. config RTLWIFI_DEBUG
  74. bool "Debugging output for rtlwifi driver family"
  75. depends on RTLWIFI
  76. default y
  77. ---help---
  78. To use the module option that sets the dynamic-debugging level for,
  79. the front-end driver, this parameter must be "Y". For memory-limited
  80. systems, choose "N". If in doubt, choose "Y".
  81. config RTL8192C_COMMON
  82. tristate
  83. depends on RTL8192CE || RTL8192CU
  84. default y
  85. endif