Kconfig 3.0 KB

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