Kconfig 4.1 KB

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