Kconfig 964 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. config RTLLIB
  2. tristate "Support for rtllib wireless devices"
  3. depends on WLAN && m
  4. default n
  5. select LIB80211
  6. ---help---
  7. If you have a wireless card that uses rtllib, say
  8. Y. Currently the only card is the rtl8192e.
  9. If unsure, say N.
  10. if RTLLIB
  11. config RTLLIB_CRYPTO_CCMP
  12. tristate "Support for rtllib CCMP crypto"
  13. depends on RTLLIB
  14. select CRYPTO_AES
  15. default y
  16. ---help---
  17. CCMP crypto driver for rtllib.
  18. If you enabled RTLLIB, you want this.
  19. config RTLLIB_CRYPTO_TKIP
  20. tristate "Support for rtllib TKIP crypto"
  21. depends on RTLLIB
  22. select CRYPTO_ARC4
  23. select CRYPTO_MICHAEL_MIC
  24. default y
  25. ---help---
  26. TKIP crypto driver for rtllib.
  27. If you enabled RTLLIB, you want this.
  28. config RTLLIB_CRYPTO_WEP
  29. tristate "Support for rtllib WEP crypto"
  30. select CRYPTO_ARC4
  31. depends on RTLLIB
  32. default y
  33. ---help---
  34. TKIP crypto driver for rtllib.
  35. If you enabled RTLLIB, you want this.
  36. source "drivers/staging/rtl8192e/rtl8192e/Kconfig"
  37. endif