Kconfig 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. config MAC80211_RC_DEFAULT_CHOICE
  16. bool "Choose default rate control algorithm" if EMBEDDED
  17. default y
  18. depends on MAC80211
  19. ---help---
  20. This options enables selection of a default rate control
  21. algorithm to be built into the mac80211 module. Alternate
  22. rate control algorithms might be built into the mac80211
  23. module as well.
  24. choice
  25. prompt "Default rate control algorithm"
  26. default MAC80211_RC_DEFAULT_PID
  27. depends on MAC80211 && MAC80211_RC_DEFAULT_CHOICE
  28. ---help---
  29. This option selects the default rate control algorithm
  30. mac80211 will use. Note that this default can still be
  31. overriden through the ieee80211_default_rc_algo module
  32. parameter.
  33. config MAC80211_RC_DEFAULT_PID
  34. bool "PID controller based rate control algorithm"
  35. select MAC80211_RC_PID
  36. ---help---
  37. Select the PID controller based rate control as the
  38. default rate control algorithm. You should choose
  39. this unless you know what you are doing.
  40. config MAC80211_RC_DEFAULT_SIMPLE
  41. bool "Simple rate control algorithm"
  42. select MAC80211_RC_SIMPLE
  43. ---help---
  44. Select the simple rate control as the default rate
  45. control algorithm. Note that this is a non-responsive,
  46. dumb algorithm. You should choose the PID rate control
  47. instead.
  48. endchoice
  49. config MAC80211_RC_DEFAULT
  50. string
  51. depends on MAC80211
  52. default "pid" if MAC80211_RC_DEFAULT_PID
  53. default "simple" if MAC80211_RC_DEFAULT_SIMPLE
  54. default ""
  55. config MAC80211_RC_PID
  56. bool "PID controller based rate control algorithm"
  57. default y
  58. depends on MAC80211
  59. ---help---
  60. This option enables a TX rate control algorithm for
  61. mac80211 that uses a PID controller to select the TX
  62. rate.
  63. Say Y or M unless you're sure you want to use a
  64. different rate control algorithm.
  65. config MAC80211_RC_SIMPLE
  66. bool "Simple rate control algorithm (DEPRECATED)"
  67. default n
  68. depends on MAC80211
  69. ---help---
  70. This option enables a very simple, non-responsive TX
  71. rate control algorithm. This algorithm is deprecated
  72. and will be removed from the kernel in near future.
  73. It has been replaced by the PID algorithm.
  74. Say N unless you know what you are doing.
  75. config MAC80211_LEDS
  76. bool "Enable LED triggers"
  77. depends on MAC80211 && LEDS_TRIGGERS
  78. ---help---
  79. This option enables a few LED triggers for different
  80. packet receive/transmit events.
  81. config MAC80211_DEBUGFS
  82. bool "Export mac80211 internals in DebugFS"
  83. depends on MAC80211 && DEBUG_FS
  84. ---help---
  85. Select this to see extensive information about
  86. the internal state of mac80211 in debugfs.
  87. Say N unless you know you need this.
  88. config MAC80211_DEBUG
  89. bool "Enable debugging output"
  90. depends on MAC80211
  91. ---help---
  92. This option will enable debug tracing output for the
  93. ieee80211 network stack.
  94. If you are not trying to debug or develop the ieee80211
  95. subsystem, you most likely want to say N here.
  96. config MAC80211_HT_DEBUG
  97. bool "Enable HT debugging output"
  98. depends on MAC80211_DEBUG
  99. ---help---
  100. This option enables 802.11n High Throughput features
  101. debug tracing output.
  102. If you are not trying to debug of develop the ieee80211
  103. subsystem, you most likely want to say N here.
  104. config MAC80211_VERBOSE_DEBUG
  105. bool "Verbose debugging output"
  106. depends on MAC80211_DEBUG
  107. config MAC80211_LOWTX_FRAME_DUMP
  108. bool "Debug frame dumping"
  109. depends on MAC80211_DEBUG
  110. ---help---
  111. Selecting this option will cause the stack to
  112. print a message for each frame that is handed
  113. to the lowlevel driver for transmission. This
  114. message includes all MAC addresses and the
  115. frame control field.
  116. If unsure, say N and insert the debugging code
  117. you require into the driver you are debugging.
  118. config TKIP_DEBUG
  119. bool "TKIP debugging"
  120. depends on MAC80211_DEBUG
  121. config MAC80211_DEBUG_COUNTERS
  122. bool "Extra statistics for TX/RX debugging"
  123. depends on MAC80211_DEBUG
  124. config MAC80211_IBSS_DEBUG
  125. bool "Support for IBSS testing"
  126. depends on MAC80211_DEBUG
  127. ---help---
  128. Say Y here if you intend to debug the IBSS code.
  129. config MAC80211_VERBOSE_PS_DEBUG
  130. bool "Verbose powersave mode debugging"
  131. depends on MAC80211_DEBUG
  132. ---help---
  133. Say Y here to print out verbose powersave
  134. mode debug messages.