Kconfig 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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_NONE
  32. bool "No default algorithm"
  33. depends on EMBEDDED
  34. help
  35. Selecting this option will select no default algorithm
  36. and allow you to not build any. Do not choose this
  37. option unless you know your driver comes with another
  38. suitable algorithm.
  39. endchoice
  40. comment "Selecting 'y' for an algorithm will"
  41. comment "build the algorithm into mac80211."
  42. config MAC80211_RC_DEFAULT
  43. string
  44. default "pid" if MAC80211_RC_DEFAULT_PID
  45. default ""
  46. config MAC80211_RC_PID
  47. tristate "PID controller based rate control algorithm"
  48. ---help---
  49. This option enables a TX rate control algorithm for
  50. mac80211 that uses a PID controller to select the TX
  51. rate.
  52. Say Y or M unless you're sure you want to use a
  53. different rate control algorithm.
  54. endmenu
  55. config MAC80211_MESH
  56. bool "Enable mac80211 mesh networking (pre-802.11s) support"
  57. depends on MAC80211 && EXPERIMENTAL
  58. ---help---
  59. This options enables support of Draft 802.11s mesh networking.
  60. The implementation is based on Draft 1.08 of the Mesh Networking
  61. amendment. For more information visit http://o11s.org/.
  62. config MAC80211_LEDS
  63. bool "Enable LED triggers"
  64. depends on MAC80211
  65. select NEW_LEDS
  66. select LEDS_TRIGGERS
  67. ---help---
  68. This option enables a few LED triggers for different
  69. packet receive/transmit events.
  70. config MAC80211_DEBUGFS
  71. bool "Export mac80211 internals in DebugFS"
  72. depends on MAC80211 && DEBUG_FS
  73. ---help---
  74. Select this to see extensive information about
  75. the internal state of mac80211 in debugfs.
  76. Say N unless you know you need this.
  77. config MAC80211_DEBUG_PACKET_ALIGNMENT
  78. bool "Enable packet alignment debugging"
  79. depends on MAC80211
  80. help
  81. This option is recommended for driver authors and strongly
  82. discouraged for everybody else, it will trigger a warning
  83. when a driver hands mac80211 a buffer that is aligned in
  84. a way that will cause problems with the IP stack on some
  85. architectures.
  86. Say N unless you're writing a mac80211 based driver.
  87. config MAC80211_DEBUG
  88. bool "Enable debugging output"
  89. depends on MAC80211
  90. ---help---
  91. This option will enable debug tracing output for the
  92. ieee80211 network stack.
  93. If you are not trying to debug or develop the ieee80211
  94. subsystem, you most likely want to say N here.
  95. config MAC80211_HT_DEBUG
  96. bool "Enable HT debugging output"
  97. depends on MAC80211_DEBUG
  98. ---help---
  99. This option enables 802.11n High Throughput features
  100. debug tracing output.
  101. If you are not trying to debug of develop the ieee80211
  102. subsystem, you most likely want to say N here.
  103. config MAC80211_VERBOSE_DEBUG
  104. bool "Verbose debugging output"
  105. depends on MAC80211_DEBUG
  106. config MAC80211_LOWTX_FRAME_DUMP
  107. bool "Debug frame dumping"
  108. depends on MAC80211_DEBUG
  109. ---help---
  110. Selecting this option will cause the stack to
  111. print a message for each frame that is handed
  112. to the lowlevel driver for transmission. This
  113. message includes all MAC addresses and the
  114. frame control field.
  115. If unsure, say N and insert the debugging code
  116. you require into the driver you are debugging.
  117. config TKIP_DEBUG
  118. bool "TKIP debugging"
  119. depends on MAC80211_DEBUG
  120. config MAC80211_DEBUG_COUNTERS
  121. bool "Extra statistics for TX/RX debugging"
  122. depends on MAC80211_DEBUG
  123. config MAC80211_IBSS_DEBUG
  124. bool "Support for IBSS testing"
  125. depends on MAC80211_DEBUG
  126. ---help---
  127. Say Y here if you intend to debug the IBSS code.
  128. config MAC80211_VERBOSE_PS_DEBUG
  129. bool "Verbose powersave mode debugging"
  130. depends on MAC80211_DEBUG
  131. ---help---
  132. Say Y here to print out verbose powersave
  133. mode debug messages.
  134. config MAC80211_VERBOSE_MPL_DEBUG
  135. bool "Verbose mesh peer link debugging"
  136. depends on MAC80211_DEBUG && MAC80211_MESH
  137. ---help---
  138. Say Y here to print out verbose mesh peer link
  139. debug messages.