Kconfig 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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 && 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. config MAC80211_DEBUG_PACKET_ALIGNMENT
  76. bool "Enable packet alignment debugging"
  77. depends on MAC80211
  78. help
  79. This option is recommended for driver authors and strongly
  80. discouraged for everybody else, it will trigger a warning
  81. when a driver hands mac80211 a buffer that is aligned in
  82. a way that will cause problems with the IP stack on some
  83. architectures.
  84. Say N unless you're writing a mac80211 based driver.
  85. config MAC80211_DEBUG
  86. bool "Enable debugging output"
  87. depends on MAC80211
  88. ---help---
  89. This option will enable debug tracing output for the
  90. ieee80211 network stack.
  91. If you are not trying to debug or develop the ieee80211
  92. subsystem, you most likely want to say N here.
  93. config MAC80211_HT_DEBUG
  94. bool "Enable HT debugging output"
  95. depends on MAC80211_DEBUG
  96. ---help---
  97. This option enables 802.11n High Throughput features
  98. debug tracing output.
  99. If you are not trying to debug of develop the ieee80211
  100. subsystem, you most likely want to say N here.
  101. config MAC80211_VERBOSE_DEBUG
  102. bool "Verbose debugging output"
  103. depends on MAC80211_DEBUG
  104. config MAC80211_LOWTX_FRAME_DUMP
  105. bool "Debug frame dumping"
  106. depends on MAC80211_DEBUG
  107. ---help---
  108. Selecting this option will cause the stack to
  109. print a message for each frame that is handed
  110. to the lowlevel driver for transmission. This
  111. message includes all MAC addresses and the
  112. frame control field.
  113. If unsure, say N and insert the debugging code
  114. you require into the driver you are debugging.
  115. config TKIP_DEBUG
  116. bool "TKIP debugging"
  117. depends on MAC80211_DEBUG
  118. config MAC80211_DEBUG_COUNTERS
  119. bool "Extra statistics for TX/RX debugging"
  120. depends on MAC80211_DEBUG
  121. config MAC80211_IBSS_DEBUG
  122. bool "Support for IBSS testing"
  123. depends on MAC80211_DEBUG
  124. ---help---
  125. Say Y here if you intend to debug the IBSS code.
  126. config MAC80211_VERBOSE_PS_DEBUG
  127. bool "Verbose powersave mode debugging"
  128. depends on MAC80211_DEBUG
  129. ---help---
  130. Say Y here to print out verbose powersave
  131. mode debug messages.
  132. config MAC80211_VERBOSE_MPL_DEBUG
  133. bool "Verbose mesh peer link debugging"
  134. depends on MAC80211_DEBUG && MAC80211_MESH
  135. ---help---
  136. Say Y here to print out verbose mesh peer link
  137. debug messages.