Kconfig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. config IEEE80211
  2. tristate "Generic IEEE 802.11 Networking Stack (DEPRECATED)"
  3. ---help---
  4. This option enables the hardware independent IEEE 802.11
  5. networking stack. This component is deprecated in favor of the
  6. mac80211 component.
  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 CRYPTO_ECB
  29. select CRC32
  30. ---help---
  31. Include software based cipher suites in support of IEEE
  32. 802.11's WEP. This is needed for WEP as well as 802.1x.
  33. This can be compiled as a module and it will be called
  34. "ieee80211_crypt_wep".
  35. config IEEE80211_CRYPT_CCMP
  36. tristate "IEEE 802.11i CCMP support"
  37. depends on IEEE80211
  38. select CRYPTO
  39. select CRYPTO_AES
  40. ---help---
  41. Include software based cipher suites in support of IEEE 802.11i
  42. (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with CCMP enabled
  43. networks.
  44. This can be compiled as a module and it will be called
  45. "ieee80211_crypt_ccmp".
  46. config IEEE80211_CRYPT_TKIP
  47. tristate "IEEE 802.11i TKIP encryption"
  48. depends on IEEE80211
  49. select WIRELESS_EXT
  50. select CRYPTO
  51. select CRYPTO_MICHAEL_MIC
  52. select CRYPTO_ECB
  53. select CRC32
  54. ---help---
  55. Include software based cipher suites in support of IEEE 802.11i
  56. (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with TKIP enabled
  57. networks.
  58. This can be compiled as a module and it will be called
  59. "ieee80211_crypt_tkip".