mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-19 12:00:46 +09:00
138 lines
3.1 KiB
Plaintext
Executable File
138 lines
3.1 KiB
Plaintext
Executable File
#
|
|
# Wireless LAN device configuration
|
|
#
|
|
|
|
menuconfig WLAN
|
|
bool "Wireless LAN"
|
|
depends on !S390
|
|
depends on NET
|
|
select WIRELESS
|
|
default y
|
|
---help---
|
|
This section contains all the pre 802.11 and 802.11 wireless
|
|
device drivers. For a complete list of drivers and documentation
|
|
on them refer to the wireless wiki:
|
|
|
|
http://wireless.kernel.org/en/users/Drivers
|
|
|
|
if WLAN
|
|
|
|
config WLAN_80211
|
|
bool "Wireless LAN (IEEE 802.11)"
|
|
depends on NETDEVICES
|
|
---help---
|
|
Say Y if you have any 802.11 wireless LAN hardware.
|
|
|
|
This option does not affect the kernel build, it only
|
|
lets you choose drivers.
|
|
|
|
choice
|
|
prompt "WiFi device driver support"
|
|
default WIFI_NONE
|
|
|
|
config WIFI_NONE
|
|
bool "No WiFi"
|
|
|
|
config BCM4329
|
|
depends on WLAN_80211 && MMC
|
|
select WIRELESS_EXT
|
|
select WEXT_PRIV
|
|
select IEEE80211
|
|
select FW_LOADER
|
|
bool "Broadcom BCM4329 WiFi/BT Combo SDIO"
|
|
---help---
|
|
A library for Broadcom BCM4329 SDIO WLAN/BT combo devices.
|
|
So far, the following modules have been verified:
|
|
(1) Samsung SWL-B23
|
|
|
|
config BCM4319
|
|
depends on WLAN_80211 && MMC
|
|
select WIRELESS_EXT
|
|
select WEXT_PRIV
|
|
select IEEE80211
|
|
select FW_LOADER
|
|
bool "Broadcom BCM4319 WiFi SDIO"
|
|
---help---
|
|
A library for Broadcom BCM4319 SDIO WLAN devices.
|
|
|
|
config MT6620
|
|
depends on WLAN_80211 && MMC && MTK_COMBO
|
|
select WIRELESS_EXT
|
|
select WEXT_PRIV
|
|
select IEEE80211
|
|
select FW_LOADER
|
|
bool "MTK MT6620 WiFi SDIO"
|
|
---help---
|
|
A library for MTK_wcn_combo SDIO WLAN devices.
|
|
config RDA5990
|
|
depends on WLAN_80211 && MMC
|
|
select WIRELESS_EXT
|
|
select WEXT_PRIV
|
|
select IEEE80211
|
|
bool "rda 5990p"
|
|
---help---
|
|
rda5990P fm bt wifi
|
|
|
|
config MV8686
|
|
depends on WLAN_80211 && MMC
|
|
select WIRELESS_EXT
|
|
select IEEE80211
|
|
select FW_LOADER
|
|
bool "Marvell MV8686 SDIO"
|
|
---help---
|
|
A library for Marvell 8686 SDIO WLAN devices.
|
|
So far, the following modules have been verified:
|
|
(1) Samsung SWL-2480
|
|
(2) Azurewave AW-GH321
|
|
(3) USI WM-G-MR-09
|
|
(4) Murata SP-8HEP-P
|
|
|
|
source "drivers/net/wireless/mt5931/Kconfig"
|
|
source "drivers/net/wireless/rkusbwifi/rtl8192cu/Kconfig"
|
|
source "drivers/net/wireless/rkusbwifi/rtl8188eu/Kconfig"
|
|
source "drivers/net/wireless/rkusbwifi/rt5370/Kconfig"
|
|
source "drivers/net/wireless/ar6003/Kconfig"
|
|
source "drivers/net/wireless/rkwifi/Kconfig"
|
|
endchoice
|
|
|
|
choice
|
|
depends on RKWIFI && WLAN_80211
|
|
prompt "Select the wifi module"
|
|
default RK903
|
|
|
|
# config BCM4329
|
|
# bool "BCM4329"
|
|
# depends on RKWIFI && WLAN_80211
|
|
|
|
config BCM4330
|
|
bool "BCM4330"
|
|
depends on RKWIFI && WLAN_80211
|
|
|
|
config RK903
|
|
bool "RK903"
|
|
depends on RKWIFI && WLAN_80211
|
|
|
|
config RK901
|
|
bool "RK901"
|
|
depends on RKWIFI && WLAN_80211
|
|
|
|
endchoice
|
|
|
|
choice
|
|
depends on RKWIFI && WLAN_80211
|
|
prompt "Select the wifi module crystal freq"
|
|
default RKWIFI_37_4M
|
|
|
|
config RKWIFI_37_4M
|
|
bool "37_4M"
|
|
depends on RKWIFI && WLAN_80211
|
|
|
|
config RKWIFI_26M
|
|
bool "26M"
|
|
depends on RKWIFI && WLAN_80211
|
|
|
|
endchoice
|
|
|
|
endif
|
|
|