Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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 CRYPTO_ECB
  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 module 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 module 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 && NET_RADIO
  48. select CRYPTO
  49. select CRYPTO_MICHAEL_MIC
  50. select CRYPTO_ECB
  51. select CRC32
  52. ---help---
  53. Include software based cipher suites in support of IEEE 802.11i
  54. (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with TKIP enabled
  55. networks.
  56. This can be compiled as a module and it will be called
  57. "ieee80211_crypt_tkip".
  58. source "net/ieee80211/softmac/Kconfig"