Kconfig 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. select NET_SCH_FIFO
  11. ---help---
  12. This option enables the hardware independent IEEE 802.11
  13. networking stack.
  14. menu "Rate control algorithm selection"
  15. depends on MAC80211 != n
  16. choice
  17. prompt "Default rate control algorithm"
  18. default MAC80211_RC_DEFAULT_PID
  19. ---help---
  20. This option selects the default rate control algorithm
  21. mac80211 will use. Note that this default can still be
  22. overriden through the ieee80211_default_rc_algo module
  23. parameter if different algorithms are available.
  24. config MAC80211_RC_DEFAULT_PID
  25. bool "PID controller based rate control algorithm"
  26. select MAC80211_RC_PID
  27. ---help---
  28. Select the PID controller based rate control as the
  29. default rate control algorithm. You should choose
  30. this unless you know what you are doing.
  31. config MAC80211_RC_DEFAULT_SIMPLE
  32. bool "Simple rate control algorithm"
  33. select MAC80211_RC_SIMPLE
  34. ---help---
  35. Select the simple rate control as the default rate
  36. control algorithm. Note that this is a non-responsive,
  37. dumb algorithm. You should choose the PID rate control
  38. instead.
  39. config MAC80211_RC_DEFAULT_NONE
  40. bool "No default algorithm"
  41. depends on EMBEDDED
  42. help
  43. Selecting this option will select no default algorithm
  44. and allow you to not build any. Do not choose this
  45. option unless you know your driver comes with another
  46. suitable algorithm.
  47. endchoice
  48. comment "Selecting 'y' for an algorithm will"
  49. comment "build the algorithm into mac80211."
  50. config MAC80211_RC_DEFAULT
  51. string
  52. default "pid" if MAC80211_RC_DEFAULT_PID
  53. default "simple" if MAC80211_RC_DEFAULT_SIMPLE
  54. default ""
  55. config MAC80211_RC_PID
  56. tristate "PID controller based rate control algorithm"
  57. ---help---
  58. This option enables a TX rate control algorithm for
  59. mac80211 that uses a PID controller to select the TX
  60. rate.
  61. Say Y or M unless you're sure you want to use a
  62. different rate control algorithm.
  63. config MAC80211_RC_SIMPLE
  64. tristate "Simple rate control algorithm (DEPRECATED)"
  65. ---help---
  66. This option enables a very simple, non-responsive TX
  67. rate control algorithm. This algorithm is deprecated
  68. and will be removed from the kernel in the near future.
  69. It has been replaced by the PID algorithm.
  70. Say N unless you know what you are doing.
  71. endmenu
  72. config MAC80211_MESH
  73. bool "Enable mac80211 mesh networking (pre-802.11s) support"
  74. depends on MAC80211 && EXPERIMENTAL
  75. ---help---
  76. This options enables support of Draft 802.11s mesh networking.
  77. The implementation is based on Draft 1.08 of the Mesh Networking
  78. amendment. For more information visit http://o11s.org/.
  79. config MAC80211_LEDS
  80. bool "Enable LED triggers"
  81. depends on MAC80211 && LEDS_TRIGGERS
  82. ---help---
  83. This option enables a few LED triggers for different
  84. packet receive/transmit events.
  85. config MAC80211_DEBUGFS
  86. bool "Export mac80211 internals in DebugFS"
  87. depends on MAC80211 && DEBUG_FS
  88. ---help---
  89. Select this to see extensive information about
  90. the internal state of mac80211 in debugfs.
  91. Say N unless you know you need this.
  92. config MAC80211_DEBUG_PACKET_ALIGNMENT
  93. bool "Enable packet alignment debugging"
  94. depends on MAC80211
  95. help
  96. This option is recommended for driver authors and strongly
  97. discouraged for everybody else, it will trigger a warning
  98. when a driver hands mac80211 a buffer that is aligned in
  99. a way that will cause problems with the IP stack on some
  100. architectures.
  101. Say N unless you're writing a mac80211 based driver.
  102. config MAC80211_DEBUG
  103. bool "Enable debugging output"
  104. depends on MAC80211
  105. ---help---
  106. This option will enable debug tracing output for the
  107. ieee80211 network stack.
  108. If you are not trying to debug or develop the ieee80211
  109. subsystem, you most likely want to say N here.
  110. config MAC80211_HT_DEBUG
  111. bool "Enable HT debugging output"
  112. depends on MAC80211_DEBUG
  113. ---help---
  114. This option enables 802.11n High Throughput features
  115. debug tracing output.
  116. If you are not trying to debug of develop the ieee80211
  117. subsystem, you most likely want to say N here.
  118. config MAC80211_VERBOSE_DEBUG
  119. bool "Verbose debugging output"
  120. depends on MAC80211_DEBUG
  121. config MAC80211_LOWTX_FRAME_DUMP
  122. bool "Debug frame dumping"
  123. depends on MAC80211_DEBUG
  124. ---help---
  125. Selecting this option will cause the stack to
  126. print a message for each frame that is handed
  127. to the lowlevel driver for transmission. This
  128. message includes all MAC addresses and the
  129. frame control field.
  130. If unsure, say N and insert the debugging code
  131. you require into the driver you are debugging.
  132. config TKIP_DEBUG
  133. bool "TKIP debugging"
  134. depends on MAC80211_DEBUG
  135. config MAC80211_DEBUG_COUNTERS
  136. bool "Extra statistics for TX/RX debugging"
  137. depends on MAC80211_DEBUG
  138. config MAC80211_IBSS_DEBUG
  139. bool "Support for IBSS testing"
  140. depends on MAC80211_DEBUG
  141. ---help---
  142. Say Y here if you intend to debug the IBSS code.
  143. config MAC80211_VERBOSE_PS_DEBUG
  144. bool "Verbose powersave mode debugging"
  145. depends on MAC80211_DEBUG
  146. ---help---
  147. Say Y here to print out verbose powersave
  148. mode debug messages.
  149. config MAC80211_VERBOSE_MPL_DEBUG
  150. bool "Verbose mesh peer link debugging"
  151. depends on MAC80211_DEBUG && MAC80211_MESH
  152. ---help---
  153. Say Y here to print out verbose mesh peer link
  154. debug messages.