Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_LEDS
  16. bool "Enable LED triggers"
  17. depends on MAC80211 && LEDS_TRIGGERS
  18. ---help---
  19. This option enables a few LED triggers for different
  20. packet receive/transmit events.
  21. config MAC80211_DEBUG
  22. bool "Enable debugging output"
  23. depends on MAC80211
  24. ---help---
  25. This option will enable debug tracing output for the
  26. ieee80211 network stack.
  27. If you are not trying to debug or develop the ieee80211
  28. subsystem, you most likely want to say N here.
  29. config MAC80211_VERBOSE_DEBUG
  30. bool "Verbose debugging output"
  31. depends on MAC80211_DEBUG
  32. config MAC80211_LOWTX_FRAME_DUMP
  33. bool "Debug frame dumping"
  34. depends on MAC80211_DEBUG
  35. ---help---
  36. Selecting this option will cause the stack to
  37. print a message for each frame that is handed
  38. to the lowlevel driver for transmission. This
  39. message includes all MAC addresses and the
  40. frame control field.
  41. If unsure, say N and insert the debugging code
  42. you require into the driver you are debugging.
  43. config TKIP_DEBUG
  44. bool "TKIP debugging"
  45. depends on MAC80211_DEBUG
  46. config MAC80211_DEBUG_COUNTERS
  47. bool "Extra statistics for TX/RX debugging"
  48. depends on MAC80211_DEBUG
  49. config MAC80211_IBSS_DEBUG
  50. bool "Support for IBSS testing"
  51. depends on MAC80211_DEBUG
  52. ---help---
  53. Say Y here if you intend to debug the IBSS code.
  54. config MAC80211_VERBOSE_PS_DEBUG
  55. bool "Verbose powersave mode debugging"
  56. depends on MAC80211_DEBUG
  57. ---help---
  58. Say Y here to print out verbose powersave
  59. mode debug messages.