Kconfig 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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_RCSIMPLE
  16. bool "'simple' rate control algorithm" if EMBEDDED
  17. default y
  18. depends on MAC80211
  19. help
  20. This option allows you to turn off the 'simple' rate
  21. control algorithm in mac80211. If you do turn it off,
  22. you absolutely need another rate control algorithm.
  23. Say Y unless you know you will have another algorithm
  24. available.
  25. config MAC80211_LEDS
  26. bool "Enable LED triggers"
  27. depends on MAC80211 && LEDS_TRIGGERS
  28. ---help---
  29. This option enables a few LED triggers for different
  30. packet receive/transmit events.
  31. config MAC80211_DEBUGFS
  32. bool "Export mac80211 internals in DebugFS"
  33. depends on MAC80211 && DEBUG_FS
  34. ---help---
  35. Select this to see extensive information about
  36. the internal state of mac80211 in debugfs.
  37. Say N unless you know you need this.
  38. config MAC80211_DEBUG
  39. bool "Enable debugging output"
  40. depends on MAC80211
  41. ---help---
  42. This option will enable debug tracing output for the
  43. ieee80211 network stack.
  44. If you are not trying to debug or develop the ieee80211
  45. subsystem, you most likely want to say N here.
  46. config MAC80211_VERBOSE_DEBUG
  47. bool "Verbose debugging output"
  48. depends on MAC80211_DEBUG
  49. config MAC80211_LOWTX_FRAME_DUMP
  50. bool "Debug frame dumping"
  51. depends on MAC80211_DEBUG
  52. ---help---
  53. Selecting this option will cause the stack to
  54. print a message for each frame that is handed
  55. to the lowlevel driver for transmission. This
  56. message includes all MAC addresses and the
  57. frame control field.
  58. If unsure, say N and insert the debugging code
  59. you require into the driver you are debugging.
  60. config TKIP_DEBUG
  61. bool "TKIP debugging"
  62. depends on MAC80211_DEBUG
  63. config MAC80211_DEBUG_COUNTERS
  64. bool "Extra statistics for TX/RX debugging"
  65. depends on MAC80211_DEBUG
  66. config MAC80211_IBSS_DEBUG
  67. bool "Support for IBSS testing"
  68. depends on MAC80211_DEBUG
  69. ---help---
  70. Say Y here if you intend to debug the IBSS code.
  71. config MAC80211_VERBOSE_PS_DEBUG
  72. bool "Verbose powersave mode debugging"
  73. depends on MAC80211_DEBUG
  74. ---help---
  75. Say Y here to print out verbose powersave
  76. mode debug messages.