Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 config RTLLIB
0003         tristate "Support for rtllib wireless devices"
0004         depends on WLAN && m
0005         select LIB80211
0006         select CRC32
0007         help
0008           If you have a wireless card that uses rtllib, say
0009           Y. Currently the only card is the rtl8192e.
0010 
0011           If unsure, say N.
0012 
0013 if RTLLIB
0014 
0015 config RTLLIB_CRYPTO_CCMP
0016         tristate "Support for rtllib CCMP crypto"
0017         depends on RTLLIB
0018         select CRYPTO
0019         select CRYPTO_AES
0020         select CRYPTO_CCM
0021         default y
0022         help
0023           CCMP crypto driver for rtllib.
0024 
0025           If you enabled RTLLIB, you want this.
0026 
0027 config RTLLIB_CRYPTO_TKIP
0028         tristate "Support for rtllib TKIP crypto"
0029         depends on RTLLIB
0030         select CRYPTO
0031         select CRYPTO_LIB_ARC4
0032         select CRYPTO_MICHAEL_MIC
0033         default y
0034         help
0035           TKIP crypto driver for rtllib.
0036 
0037           If you enabled RTLLIB, you want this.
0038 
0039 config RTLLIB_CRYPTO_WEP
0040         tristate "Support for rtllib WEP crypto"
0041         select CRYPTO_LIB_ARC4
0042         depends on RTLLIB
0043         default y
0044         help
0045           TKIP crypto driver for rtllib.
0046 
0047           If you enabled RTLLIB, you want this.
0048 
0049 source "drivers/staging/rtl8192e/rtl8192e/Kconfig"
0050 
0051 endif