brintos

brintos / linux-shallow public Read only

0
0
Text · 1.5 KiB · e06c189 Raw
62 lines · plain
1# SPDX-License-Identifier: GPL-2.02config RTLLIB3	tristate "Support for rtllib wireless devices"4	depends on WLAN && m5	select LIB802116	select CRC327	help8	  If you have a wireless card that uses rtllib, say9	  Y. Currently the only card is the rtl8192e.10 11	  If unsure, say N.12 13	  This driver adds support for rtllib wireless cards.14	  Only the rtl8192e is supported as of now.15 16if RTLLIB17 18config RTLLIB_CRYPTO_CCMP19	tristate "Support for rtllib CCMP crypto"20	depends on RTLLIB21	select CRYPTO22	select CRYPTO_AES23	select CRYPTO_CCM24	default y25	help26	  CCMP crypto driver for rtllib.27 28	  If you enabled RTLLIB, you want this.29	  Adds support for the CCM mode Protocol crypto driver for30	  use in wireless cards (including rtllib cards).31 32config RTLLIB_CRYPTO_TKIP33	tristate "Support for rtllib TKIP crypto"34	depends on RTLLIB35	select CRYPTO36	select CRYPTO_LIB_ARC437	select CRYPTO_MICHAEL_MIC38	default y39	help40	  TKIP crypto driver for rtllib.41 42	  If you enabled RTLLIB, you want this.43	  Adds support for the Temporal Key Integrity Protocol for44	  the IEEE 802.11i standard for use on wireless cards.45 46config RTLLIB_CRYPTO_WEP47	tristate "Support for rtllib WEP crypto"48	select CRYPTO_LIB_ARC449	depends on RTLLIB50	default y51	help52	  WEP crypto driver for rtllib.53 54	  If you enabled RTLLIB, you want this.55	  Adds support for the (now weak) Wired Equivalent Privacy56	  (WEP) crypto protocol for wireless cards.57	  NOTE: This protocol is now considered insecure.58 59source "drivers/staging/rtl8192e/rtl8192e/Kconfig"60 61endif62