1config 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 10 If unsure, say N. 11 12if RTLLIB 13 14config RTLLIB_CRYPTO_CCMP 15 tristate "Support for rtllib CCMP crypto" 16 depends on RTLLIB 17 select CRYPTO_AES 18 default y 19 ---help--- 20 CCMP crypto driver for rtllib. 21 22 If you enabled RTLLIB, you want this. 23 24config RTLLIB_CRYPTO_TKIP 25 tristate "Support for rtllib TKIP crypto" 26 depends on RTLLIB 27 select CRYPTO_ARC4 28 select CRYPTO_MICHAEL_MIC 29 default y 30 ---help--- 31 TKIP crypto driver for rtllib. 32 33 If you enabled RTLLIB, you want this. 34 35config RTLLIB_CRYPTO_WEP 36 tristate "Support for rtllib WEP crypto" 37 select CRYPTO_ARC4 38 depends on RTLLIB 39 default y 40 ---help--- 41 TKIP crypto driver for rtllib. 42 43 If you enabled RTLLIB, you want this. 44 45source "drivers/staging/rtl8192e/rtl8192e/Kconfig" 46 47endif 48