Kconfig 2.3 KB

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