Kconfig 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 y
  30. ---help---
  31. This option enables the legacy wireless extensions
  32. (wireless network interface configuration via ioctls.)
  33. Say Y unless you've upgraded all your userspace to use
  34. nl80211 instead of wireless extensions.
  35. config WIRELESS_EXT_SYSFS
  36. bool "Wireless extensions sysfs files"
  37. default y
  38. depends on WIRELESS_EXT && SYSFS
  39. help
  40. This option enables the deprecated wireless statistics
  41. files in /sys/class/net/*/wireless/. The same information
  42. is available via the ioctls as well.
  43. Say Y if you have programs using it, like old versions of
  44. hal.
  45. config LIB80211
  46. tristate "Common routines for IEEE802.11 drivers"
  47. default n
  48. help
  49. This options enables a library of common routines used
  50. by IEEE802.11 wireless LAN drivers.
  51. Drivers should select this themselves if needed. Say Y if
  52. you want this built into your kernel.
  53. config LIB80211_CRYPT_WEP
  54. tristate
  55. config LIB80211_CRYPT_CCMP
  56. tristate
  57. config LIB80211_CRYPT_TKIP
  58. tristate
  59. config LIB80211_DEBUG
  60. bool "lib80211 debugging messages"
  61. depends on LIB80211
  62. default n
  63. ---help---
  64. You can enable this if you want verbose debugging messages
  65. from lib80211.
  66. If unsure, say N.