kernel: add ar5523 driver
The driver currently only support managed and monitor mode Changes since v1: - drop the @DRIVER_11N_SUPPORT dependency Signed-off-by: mohammad rasim <mohammad.rasim96@gmail.com>
This commit is contained in:
parent
8735997686
commit
785c7d9b16
|
@ -1,6 +1,6 @@
|
||||||
PKG_DRIVERS += \
|
PKG_DRIVERS += \
|
||||||
ath ath5k ath6kl ath6kl-sdio ath6kl-usb ath9k ath9k-common ath9k-htc ath10k \
|
ath ath5k ath6kl ath6kl-sdio ath6kl-usb ath9k ath9k-common ath9k-htc ath10k \
|
||||||
carl9170 owl-loader
|
carl9170 owl-loader ar5523
|
||||||
|
|
||||||
PKG_CONFIG_DEPENDS += \
|
PKG_CONFIG_DEPENDS += \
|
||||||
CONFIG_PACKAGE_ATH_DEBUG \
|
CONFIG_PACKAGE_ATH_DEBUG \
|
||||||
|
@ -67,6 +67,7 @@ config-$(call config_package,ath6kl-sdio) += ATH6KL_SDIO
|
||||||
config-$(call config_package,ath6kl-usb) += ATH6KL_USB
|
config-$(call config_package,ath6kl-usb) += ATH6KL_USB
|
||||||
|
|
||||||
config-$(call config_package,carl9170) += CARL9170
|
config-$(call config_package,carl9170) += CARL9170
|
||||||
|
config-$(call config_package,ar5523) += AR5523
|
||||||
|
|
||||||
define KernelPackage/ath/config
|
define KernelPackage/ath/config
|
||||||
if PACKAGE_kmod-ath
|
if PACKAGE_kmod-ath
|
||||||
|
@ -300,3 +301,11 @@ define KernelPackage/owl-loader/description
|
||||||
|
|
||||||
This is necessary for devices like the Cisco Meraki Z1.
|
This is necessary for devices like the Cisco Meraki Z1.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/ar5523
|
||||||
|
$(call KernelPackage/mac80211/Default)
|
||||||
|
TITLE:=Driver for Atheros AR5523 USB sticks
|
||||||
|
DEPENDS:=@USB_SUPPORT +kmod-mac80211 +kmod-ath +kmod-usb-core +kmod-input-core
|
||||||
|
FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/ath/ar5523/ar5523.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,ar5523)
|
||||||
|
endef
|
||||||
|
|
Loading…
Reference in New Issue