Kconfig 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. config CFG80211
  2. tristate "Improved wireless configuration API"
  3. depends on RFKILL || !RFKILL
  4. config NL80211_TESTMODE
  5. bool "nl80211 testmode command"
  6. depends on CFG80211
  7. help
  8. The nl80211 testmode command helps implementing things like
  9. factory calibration or validation tools for wireless chips.
  10. Select this option ONLY for kernels that are specifically
  11. built for such purposes.
  12. Debugging tools that are supposed to end up in the hands of
  13. users should better be implemented with debugfs.
  14. Say N.
  15. config CFG80211_DEVELOPER_WARNINGS
  16. bool "enable developer warnings"
  17. depends on CFG80211
  18. default n
  19. help
  20. This option enables some additional warnings that help
  21. cfg80211 developers and driver developers, but that can
  22. trigger due to races with userspace.
  23. For example, when a driver reports that it was disconnected
  24. from the AP, but the user disconnects manually at the same
  25. time, the warning might trigger spuriously due to races.
  26. Say Y only if you are developing cfg80211 or a driver based
  27. on it (or mac80211).
  28. config CFG80211_REG_DEBUG
  29. bool "cfg80211 regulatory debugging"
  30. depends on CFG80211
  31. default n
  32. ---help---
  33. You can enable this if you want to debug regulatory changes.
  34. If unsure, say N.
  35. config CFG80211_DEFAULT_PS
  36. bool "enable powersave by default"
  37. depends on CFG80211
  38. default y
  39. help
  40. This option enables powersave mode by default.
  41. If this causes your applications to misbehave you should fix your
  42. applications instead -- they need to register their network
  43. latency requirement, see Documentation/power/pm_qos_interface.txt.
  44. config CFG80211_DEFAULT_PS_VALUE
  45. int
  46. default 1 if CFG80211_DEFAULT_PS
  47. default 0
  48. config CFG80211_DEBUGFS
  49. bool "cfg80211 DebugFS entries"
  50. depends on CFG80211 && DEBUG_FS
  51. ---help---
  52. You can enable this if you want to debugfs entries for cfg80211.
  53. If unsure, say N.
  54. config WIRELESS_OLD_REGULATORY
  55. bool "Old wireless static regulatory definitions"
  56. default n
  57. ---help---
  58. This option enables the old static regulatory information
  59. and uses it within the new framework. This option is available
  60. for historical reasons and it is advised to leave it off.
  61. For details see:
  62. http://wireless.kernel.org/en/developers/Regulatory
  63. Say N and if you say Y, please tell us why. The default is N.
  64. config WIRELESS_EXT
  65. bool "Wireless extensions"
  66. default y
  67. ---help---
  68. This option enables the legacy wireless extensions
  69. (wireless network interface configuration via ioctls.)
  70. Say Y unless you've upgraded all your userspace to use
  71. nl80211 instead of wireless extensions.
  72. config WIRELESS_EXT_SYSFS
  73. bool "Wireless extensions sysfs files"
  74. default y
  75. depends on WIRELESS_EXT && SYSFS
  76. help
  77. This option enables the deprecated wireless statistics
  78. files in /sys/class/net/*/wireless/. The same information
  79. is available via the ioctls as well.
  80. Say Y if you have programs using it, like old versions of
  81. hal.
  82. config LIB80211
  83. tristate "Common routines for IEEE802.11 drivers"
  84. default n
  85. help
  86. This options enables a library of common routines used
  87. by IEEE802.11 wireless LAN drivers.
  88. Drivers should select this themselves if needed. Say Y if
  89. you want this built into your kernel.
  90. config LIB80211_CRYPT_WEP
  91. tristate
  92. config LIB80211_CRYPT_CCMP
  93. tristate
  94. config LIB80211_CRYPT_TKIP
  95. tristate
  96. config LIB80211_DEBUG
  97. bool "lib80211 debugging messages"
  98. depends on LIB80211
  99. default n
  100. ---help---
  101. You can enable this if you want verbose debugging messages
  102. from lib80211.
  103. If unsure, say N.