Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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_DEBUGFS
  22. bool "Export mac80211 internals in DebugFS"
  23. depends on MAC80211 && DEBUG_FS
  24. ---help---
  25. Select this to see extensive information about
  26. the internal state of mac80211 in debugfs.
  27. Say N unless you know you need this.
  28. config MAC80211_DEBUG
  29. bool "Enable debugging output"
  30. depends on MAC80211
  31. ---help---
  32. This option will enable debug tracing output for the
  33. ieee80211 network stack.
  34. If you are not trying to debug or develop the ieee80211
  35. subsystem, you most likely want to say N here.
  36. config MAC80211_VERBOSE_DEBUG
  37. bool "Verbose debugging output"
  38. depends on MAC80211_DEBUG
  39. config MAC80211_LOWTX_FRAME_DUMP
  40. bool "Debug frame dumping"
  41. depends on MAC80211_DEBUG
  42. ---help---
  43. Selecting this option will cause the stack to
  44. print a message for each frame that is handed
  45. to the lowlevel driver for transmission. This
  46. message includes all MAC addresses and the
  47. frame control field.
  48. If unsure, say N and insert the debugging code
  49. you require into the driver you are debugging.
  50. config TKIP_DEBUG
  51. bool "TKIP debugging"
  52. depends on MAC80211_DEBUG
  53. config MAC80211_DEBUG_COUNTERS
  54. bool "Extra statistics for TX/RX debugging"
  55. depends on MAC80211_DEBUG
  56. config MAC80211_IBSS_DEBUG
  57. bool "Support for IBSS testing"
  58. depends on MAC80211_DEBUG
  59. ---help---
  60. Say Y here if you intend to debug the IBSS code.
  61. config MAC80211_VERBOSE_PS_DEBUG
  62. bool "Verbose powersave mode debugging"
  63. depends on MAC80211_DEBUG
  64. ---help---
  65. Say Y here to print out verbose powersave
  66. mode debug messages.