Kconfig 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. For more information on cfg80211 regulatory refer to the wireless
  35. wiki:
  36. http://wireless.kernel.org/en/developers/Regulatory
  37. If unsure, say N.
  38. config CFG80211_DEFAULT_PS
  39. bool "enable powersave by default"
  40. depends on CFG80211
  41. default y
  42. help
  43. This option enables powersave mode by default.
  44. If this causes your applications to misbehave you should fix your
  45. applications instead -- they need to register their network
  46. latency requirement, see Documentation/power/pm_qos_interface.txt.
  47. config CFG80211_DEFAULT_PS_VALUE
  48. int
  49. default 1 if CFG80211_DEFAULT_PS
  50. default 0
  51. config CFG80211_DEBUGFS
  52. bool "cfg80211 DebugFS entries"
  53. depends on CFG80211 && DEBUG_FS
  54. ---help---
  55. You can enable this if you want to debugfs entries for cfg80211.
  56. If unsure, say N.
  57. config WIRELESS_OLD_REGULATORY
  58. bool "Old wireless static regulatory definitions"
  59. default n
  60. ---help---
  61. This option enables the old static regulatory information
  62. and uses it within the new framework. This option is available
  63. for historical reasons and it is advised to leave it off.
  64. For details see:
  65. http://wireless.kernel.org/en/developers/Regulatory
  66. Say N and if you say Y, please tell us why. The default is N.
  67. config WIRELESS_EXT
  68. bool "Wireless extensions"
  69. default y
  70. ---help---
  71. This option enables the legacy wireless extensions
  72. (wireless network interface configuration via ioctls.)
  73. Say Y unless you've upgraded all your userspace to use
  74. nl80211 instead of wireless extensions.
  75. config WIRELESS_EXT_SYSFS
  76. bool "Wireless extensions sysfs files"
  77. default y
  78. depends on WIRELESS_EXT && SYSFS
  79. help
  80. This option enables the deprecated wireless statistics
  81. files in /sys/class/net/*/wireless/. The same information
  82. is available via the ioctls as well.
  83. Say Y if you have programs using it, like old versions of
  84. hal.
  85. config LIB80211
  86. tristate "Common routines for IEEE802.11 drivers"
  87. default n
  88. help
  89. This options enables a library of common routines used
  90. by IEEE802.11 wireless LAN drivers.
  91. Drivers should select this themselves if needed. Say Y if
  92. you want this built into your kernel.
  93. config LIB80211_CRYPT_WEP
  94. tristate
  95. config LIB80211_CRYPT_CCMP
  96. tristate
  97. config LIB80211_CRYPT_TKIP
  98. tristate
  99. config LIB80211_DEBUG
  100. bool "lib80211 debugging messages"
  101. depends on LIB80211
  102. default n
  103. ---help---
  104. You can enable this if you want verbose debugging messages
  105. from lib80211.
  106. If unsure, say N.