Kconfig 4.8 KB

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