Kconfig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. select CRC32
  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".
  56. source "net/ieee80211/softmac/Kconfig"