Kconfig 4.8 KB

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