Kconfig 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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 && BROKEN
  75. ---help---
  76. This options enables support of pre-802.11s mesh interfaces.
  77. For more information visit http://o11s.org
  78. config MAC80211_LEDS
  79. bool "Enable LED triggers"
  80. depends on MAC80211 && LEDS_TRIGGERS
  81. ---help---
  82. This option enables a few LED triggers for different
  83. packet receive/transmit events.
  84. config MAC80211_DEBUGFS
  85. bool "Export mac80211 internals in DebugFS"
  86. depends on MAC80211 && DEBUG_FS
  87. ---help---
  88. Select this to see extensive information about
  89. the internal state of mac80211 in debugfs.
  90. Say N unless you know you need this.
  91. config MAC80211_DEBUG_PACKET_ALIGNMENT
  92. bool "Enable packet alignment debugging"
  93. depends on MAC80211
  94. help
  95. This option is recommended for driver authors and strongly
  96. discouraged for everybody else, it will trigger a warning
  97. when a driver hands mac80211 a buffer that is aligned in
  98. a way that will cause problems with the IP stack on some
  99. architectures.
  100. Say N unless you're writing a mac80211 based driver.
  101. config MAC80211_DEBUG
  102. bool "Enable debugging output"
  103. depends on MAC80211
  104. ---help---
  105. This option will enable debug tracing output for the
  106. ieee80211 network stack.
  107. If you are not trying to debug or develop the ieee80211
  108. subsystem, you most likely want to say N here.
  109. config MAC80211_HT_DEBUG
  110. bool "Enable HT debugging output"
  111. depends on MAC80211_DEBUG
  112. ---help---
  113. This option enables 802.11n High Throughput features
  114. debug tracing output.
  115. If you are not trying to debug of develop the ieee80211
  116. subsystem, you most likely want to say N here.
  117. config MAC80211_VERBOSE_DEBUG
  118. bool "Verbose debugging output"
  119. depends on MAC80211_DEBUG
  120. config MAC80211_LOWTX_FRAME_DUMP
  121. bool "Debug frame dumping"
  122. depends on MAC80211_DEBUG
  123. ---help---
  124. Selecting this option will cause the stack to
  125. print a message for each frame that is handed
  126. to the lowlevel driver for transmission. This
  127. message includes all MAC addresses and the
  128. frame control field.
  129. If unsure, say N and insert the debugging code
  130. you require into the driver you are debugging.
  131. config TKIP_DEBUG
  132. bool "TKIP debugging"
  133. depends on MAC80211_DEBUG
  134. config MAC80211_DEBUG_COUNTERS
  135. bool "Extra statistics for TX/RX debugging"
  136. depends on MAC80211_DEBUG
  137. config MAC80211_IBSS_DEBUG
  138. bool "Support for IBSS testing"
  139. depends on MAC80211_DEBUG
  140. ---help---
  141. Say Y here if you intend to debug the IBSS code.
  142. config MAC80211_VERBOSE_PS_DEBUG
  143. bool "Verbose powersave mode debugging"
  144. depends on MAC80211_DEBUG
  145. ---help---
  146. Say Y here to print out verbose powersave
  147. mode debug messages.
  148. config MAC80211_VERBOSE_MPL_DEBUG
  149. bool "Verbose mesh peer link debugging"
  150. depends on MAC80211_DEBUG && MAC80211_MESH
  151. ---help---
  152. Say Y here to print out verbose mesh peer link
  153. debug messages.