Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. config IEEE80211
  2. tristate "Generic IEEE 802.11 Networking Stack"
  3. select NET_RADIO
  4. ---help---
  5. This option enables the hardware independent IEEE 802.11
  6. networking stack.
  7. config IEEE80211_DEBUG
  8. bool "Enable full debugging output"
  9. depends on IEEE80211
  10. ---help---
  11. This option will enable debug tracing output for the
  12. ieee80211 network stack.
  13. This will result in the kernel module being ~70k larger. You
  14. can control which debug output is sent to the kernel log by
  15. setting the value in
  16. /proc/net/ieee80211/debug_level
  17. For example:
  18. % echo 0x00000FFO > /proc/net/ieee80211/debug_level
  19. For a list of values you can assign to debug_level, you
  20. can look at the bit mask values in <net/ieee80211.h>
  21. If you are not trying to debug or develop the ieee80211
  22. subsystem, you most likely want to say N here.
  23. config IEEE80211_CRYPT_WEP
  24. tristate "IEEE 802.11 WEP encryption (802.1x)"
  25. depends on IEEE80211
  26. select CRYPTO
  27. select CRYPTO_ARC4
  28. select CRC32
  29. ---help---
  30. Include software based cipher suites in support of IEEE
  31. 802.11's WEP. This is needed for WEP as well as 802.1x.
  32. This can be compiled as a modules and it will be called
  33. "ieee80211_crypt_wep".
  34. config IEEE80211_CRYPT_CCMP
  35. tristate "IEEE 802.11i CCMP support"
  36. depends on IEEE80211
  37. select CRYPTO
  38. select CRYPTO_AES
  39. ---help---
  40. Include software based cipher suites in support of IEEE 802.11i
  41. (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with CCMP enabled
  42. networks.
  43. This can be compiled as a modules and it will be called
  44. "ieee80211_crypt_ccmp".
  45. config IEEE80211_CRYPT_TKIP
  46. tristate "IEEE 802.11i TKIP encryption"
  47. depends on IEEE80211
  48. select CRYPTO
  49. select CRYPTO_MICHAEL_MIC
  50. ---help---
  51. Include software based cipher suites in support of IEEE 802.11i
  52. (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with TKIP enabled
  53. networks.
  54. This can be compiled as a modules and it will be called
  55. "ieee80211_crypt_tkip".