Kconfig 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. config MAC80211
  2. tristate "Generic IEEE 802.11 Networking Stack (mac80211)"
  3. select CRYPTO
  4. select CRYPTO_ECB
  5. select CRYPTO_ARC4
  6. select CRYPTO_AES
  7. select CRC32
  8. select WIRELESS_EXT
  9. select CFG80211
  10. ---help---
  11. This option enables the hardware independent IEEE 802.11
  12. networking stack.
  13. menu "Rate control algorithm selection"
  14. depends on MAC80211 != n
  15. config MAC80211_RC_PID
  16. bool "PID controller based rate control algorithm" if EMBEDDED
  17. default y
  18. ---help---
  19. This option enables a TX rate control algorithm for
  20. mac80211 that uses a PID controller to select the TX
  21. rate.
  22. config MAC80211_RC_MINSTREL
  23. bool "Minstrel"
  24. ---help---
  25. This option enables the 'minstrel' TX rate control algorithm
  26. choice
  27. prompt "Default rate control algorithm"
  28. default MAC80211_RC_DEFAULT_PID
  29. ---help---
  30. This option selects the default rate control algorithm
  31. mac80211 will use. Note that this default can still be
  32. overriden through the ieee80211_default_rc_algo module
  33. parameter if different algorithms are available.
  34. config MAC80211_RC_DEFAULT_PID
  35. bool "PID controller based rate control algorithm"
  36. depends on MAC80211_RC_PID
  37. ---help---
  38. Select the PID controller based rate control as the
  39. default rate control algorithm. You should choose
  40. this unless you know what you are doing.
  41. config MAC80211_RC_DEFAULT_MINSTREL
  42. bool "Minstrel"
  43. depends on MAC80211_RC_MINSTREL
  44. ---help---
  45. Select Minstrel as the default rate control algorithm.
  46. endchoice
  47. config MAC80211_RC_DEFAULT
  48. string
  49. default "pid" if MAC80211_RC_DEFAULT_PID
  50. default "minstrel" if MAC80211_RC_DEFAULT_MINSTREL
  51. default ""
  52. endmenu
  53. config MAC80211_MESH
  54. bool "Enable mac80211 mesh networking (pre-802.11s) support"
  55. depends on MAC80211 && EXPERIMENTAL
  56. ---help---
  57. This options enables support of Draft 802.11s mesh networking.
  58. The implementation is based on Draft 1.08 of the Mesh Networking
  59. amendment. For more information visit http://o11s.org/.
  60. config MAC80211_LEDS
  61. bool "Enable LED triggers"
  62. depends on MAC80211
  63. select NEW_LEDS
  64. select LEDS_TRIGGERS
  65. ---help---
  66. This option enables a few LED triggers for different
  67. packet receive/transmit events.
  68. config MAC80211_DEBUGFS
  69. bool "Export mac80211 internals in DebugFS"
  70. depends on MAC80211 && DEBUG_FS
  71. ---help---
  72. Select this to see extensive information about
  73. the internal state of mac80211 in debugfs.
  74. Say N unless you know you need this.
  75. menuconfig MAC80211_DEBUG_MENU
  76. bool "Select mac80211 debugging features"
  77. depends on MAC80211
  78. ---help---
  79. This option collects various mac80211 debug settings.
  80. config MAC80211_DEBUG_PACKET_ALIGNMENT
  81. bool "Enable packet alignment debugging"
  82. depends on MAC80211_DEBUG_MENU
  83. ---help---
  84. This option is recommended for driver authors and strongly
  85. discouraged for everybody else, it will trigger a warning
  86. when a driver hands mac80211 a buffer that is aligned in
  87. a way that will cause problems with the IP stack on some
  88. architectures.
  89. Say N unless you're writing a mac80211 based driver.
  90. config MAC80211_NOINLINE
  91. bool "Do not inline TX/RX handlers"
  92. depends on MAC80211_DEBUG_MENU
  93. ---help---
  94. This option affects code generation in mac80211, when
  95. selected some functions are marked "noinline" to allow
  96. easier debugging of problems in the transmit and receive
  97. paths.
  98. This option increases code size a bit and inserts a lot
  99. of function calls in the code, but is otherwise safe to
  100. enable.
  101. If unsure, say N unless you expect to be finding problems
  102. in mac80211.
  103. config MAC80211_VERBOSE_DEBUG
  104. bool "Verbose debugging output"
  105. depends on MAC80211_DEBUG_MENU
  106. ---help---
  107. Selecting this option causes mac80211 to print out
  108. many debugging messages. It should not be selected
  109. on production systems as some of the messages are
  110. remotely triggerable.
  111. Do not select this option.
  112. config MAC80211_HT_DEBUG
  113. bool "Verbose HT debugging"
  114. depends on MAC80211_DEBUG_MENU
  115. ---help---
  116. This option enables 802.11n High Throughput features
  117. debug tracing output.
  118. It should not be selected on production systems as some
  119. of the messages are remotely triggerable.
  120. Do not select this option.
  121. config MAC80211_TKIP_DEBUG
  122. bool "Verbose TKIP debugging"
  123. depends on MAC80211_DEBUG_MENU
  124. ---help---
  125. Selecting this option causes mac80211 to print out
  126. very verbose TKIP debugging messages. It should not
  127. be selected on production systems as those messages
  128. are remotely triggerable.
  129. Do not select this option.
  130. config MAC80211_IBSS_DEBUG
  131. bool "Verbose IBSS debugging"
  132. depends on MAC80211_DEBUG_MENU
  133. ---help---
  134. Selecting this option causes mac80211 to print out
  135. very verbose IBSS debugging messages. It should not
  136. be selected on production systems as those messages
  137. are remotely triggerable.
  138. Do not select this option.
  139. config MAC80211_VERBOSE_PS_DEBUG
  140. bool "Verbose powersave mode debugging"
  141. depends on MAC80211_DEBUG_MENU
  142. ---help---
  143. Selecting this option causes mac80211 to print out very
  144. verbose power save mode debugging messages (when mac80211
  145. is an AP and has power saving stations.)
  146. It should not be selected on production systems as those
  147. messages are remotely triggerable.
  148. Do not select this option.
  149. config MAC80211_VERBOSE_MPL_DEBUG
  150. bool "Verbose mesh peer link debugging"
  151. depends on MAC80211_DEBUG_MENU
  152. depends on MAC80211_MESH
  153. ---help---
  154. Selecting this option causes mac80211 to print out very
  155. verbose mesh peer link debugging messages (when mac80211
  156. is taking part in a mesh network).
  157. It should not be selected on production systems as those
  158. messages are remotely triggerable.
  159. Do not select this option.
  160. config MAC80211_DEBUG_COUNTERS
  161. bool "Extra statistics for TX/RX debugging"
  162. depends on MAC80211_DEBUG_MENU
  163. depends on MAC80211_DEBUGFS
  164. ---help---
  165. Selecting this option causes mac80211 to keep additional
  166. and very verbose statistics about TX and RX handler use
  167. and show them in debugfs.
  168. If unsure, say N.
  169. config MAC80211_VERBOSE_SPECT_MGMT_DEBUG
  170. bool "Verbose Spectrum Management (IEEE 802.11h)debugging"
  171. depends on MAC80211_DEBUG_MENU
  172. ---help---
  173. Say Y here to print out verbose Spectrum Management (IEEE 802.11h)
  174. debug messages.