Kconfig 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. config CFG80211
  2. tristate "Improved wireless configuration API"
  3. depends on RFKILL || !RFKILL
  4. config CFG80211_REG_DEBUG
  5. bool "cfg80211 regulatory debugging"
  6. depends on CFG80211
  7. default n
  8. ---help---
  9. You can enable this if you want to debug regulatory changes.
  10. If unsure, say N.
  11. config CFG80211_DEBUGFS
  12. bool "cfg80211 DebugFS entries"
  13. depends on CFG80211 && DEBUG_FS
  14. ---help---
  15. You can enable this if you want to debugfs entries for cfg80211.
  16. If unsure, say N.
  17. config WIRELESS_OLD_REGULATORY
  18. bool "Old wireless static regulatory definitions"
  19. default n
  20. ---help---
  21. This option enables the old static regulatory information
  22. and uses it within the new framework. This option is available
  23. for historical reasons and it is advised to leave it off.
  24. For details see:
  25. http://wireless.kernel.org/en/developers/Regulatory
  26. Say N and if you say Y, please tell us why. The default is N.
  27. config WIRELESS_EXT
  28. bool "Wireless extensions"
  29. default n
  30. ---help---
  31. This option enables the legacy wireless extensions
  32. (wireless network interface configuration via ioctls.)
  33. Wireless extensions will be replaced by cfg80211 and
  34. will be required only by legacy drivers that implement
  35. wireless extension handlers. This option does not
  36. affect the wireless-extension backward compatibility
  37. code in cfg80211.
  38. Say N (if you can) unless you know you need wireless
  39. extensions for external modules.
  40. config WIRELESS_EXT_SYSFS
  41. bool "Wireless extensions sysfs files"
  42. default y
  43. depends on WIRELESS_EXT && SYSFS
  44. help
  45. This option enables the deprecated wireless statistics
  46. files in /sys/class/net/*/wireless/. The same information
  47. is available via the ioctls as well.
  48. Say Y if you have programs using it, like old versions of
  49. hal.
  50. config LIB80211
  51. tristate "Common routines for IEEE802.11 drivers"
  52. default n
  53. help
  54. This options enables a library of common routines used
  55. by IEEE802.11 wireless LAN drivers.
  56. Drivers should select this themselves if needed. Say Y if
  57. you want this built into your kernel.
  58. config LIB80211_CRYPT_WEP
  59. tristate
  60. config LIB80211_CRYPT_CCMP
  61. tristate
  62. config LIB80211_CRYPT_TKIP
  63. tristate
  64. config LIB80211_DEBUG
  65. bool "lib80211 debugging messages"
  66. depends on LIB80211
  67. default n
  68. ---help---
  69. You can enable this if you want verbose debugging messages
  70. from lib80211.
  71. If unsure, say N.