Archived
14
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/drivers/staging/rtl8192e/Kconfig
Sean MacLennan 3b148be0df staging/rtl8192e: Register against lib80211
Convert rtllib from registering the crypt drivers against rtllib_crypt
and instead register the against lib80211. The crypto functions have
R- prepended (R-CCMP, R-TKIP, R-WEP) so they will not clash with the
lib80211 versions.

We cannot use the lib80211 crypt drivers since the rtl8192e has some
hardware support that is not handled by the lib80211 crypt drivers.

Signed-off-by: Sean MacLennan <seanm@seanm.ca>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2011-12-22 13:48:59 -08:00

44 lines
878 B
Text

config RTLLIB
tristate "Support for rtllib wireless devices"
depends on WLAN && m
default n
select LIB80211
---help---
If you have a wireless card that uses rtllib, say
Y. Currently the only card is the rtl8192e.
If unsure, say N.
if RTLLIB
config RTLLIB_CRYPTO_CCMP
tristate "Support for rtllib CCMP crypto"
depends on RTLLIB
default y
---help---
CCMP crypto driver for rtllib.
If you enabled RTLLIB, you want this.
config RTLLIB_CRYPTO_TKIP
tristate "Support for rtllib TKIP crypto"
depends on RTLLIB
default y
---help---
TKIP crypto driver for rtllib.
If you enabled RTLLIB, you want this.
config RTLLIB_CRYPTO_WEP
tristate "Support for rtllib WEP crypto"
depends on RTLLIB
default y
---help---
TKIP crypto driver for rtllib.
If you enabled RTLLIB, you want this.
source "drivers/staging/rtl8192e/rtl8192e/Kconfig"
endif