Kconfig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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_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
  47. select CRYPTO_MICHAEL_MIC
  48. ---help---
  49. Include software based cipher suites in support of IEEE 802.11i
  50. (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with TKIP enabled
  51. networks.
  52. This can be compiled as a modules and it will be called
  53. "ieee80211_crypt_tkip".