Kconfig 1.9 KB

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