Kconfig 2.1 KB

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