Kconfig 2.0 KB

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