Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. config IEEE80211
  2. tristate
  3. select WIRELESS_EXT
  4. select CRYPTO
  5. select CRYPTO_ARC4
  6. select CRYPTO_ECB
  7. select CRYPTO_AES
  8. select CRYPTO_MICHAEL_MIC
  9. select CRYPTO_ECB
  10. select CRC32
  11. select IEEE80211_CRYPT_WEP
  12. select IEEE80211_CRYPT_TKIP
  13. select IEEE80211_CRYPT_CCMP
  14. ---help---
  15. This option enables the hardware independent IEEE 802.11
  16. networking stack. This component is deprecated in favor of the
  17. mac80211 component.
  18. config IEEE80211_DEBUG
  19. bool "Full debugging output for the old IEEE80211 stack"
  20. depends on IEEE80211
  21. ---help---
  22. This option will enable debug tracing output for the
  23. ieee80211 network stack.
  24. This will result in the kernel module being ~70k larger. You
  25. can control which debug output is sent to the kernel log by
  26. setting the value in
  27. /proc/net/ieee80211/debug_level
  28. For example:
  29. % echo 0x00000FFO > /proc/net/ieee80211/debug_level
  30. For a list of values you can assign to debug_level, you
  31. can look at the bit mask values in <net/ieee80211.h>
  32. If you are not trying to debug or develop the ieee80211
  33. subsystem, you most likely want to say N here.
  34. config IEEE80211_CRYPT_WEP
  35. tristate
  36. config IEEE80211_CRYPT_CCMP
  37. tristate
  38. config IEEE80211_CRYPT_TKIP
  39. tristate