Kconfig 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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
  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 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.