diff options
author | John Crispin <john@openwrt.org> | 2016-03-20 14:41:41 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2016-03-20 14:41:41 +0000 |
commit | b5bd41edcd4457e16ba7e1ae91c3efda9df0ab99 (patch) | |
tree | 224be95bc8edd682ab43d4f567a7f31c766f6037 /package/kernel | |
parent | 7861462adec50ce571f40c56b19081fb6b34f81d (diff) | |
download | upstream-b5bd41edcd4457e16ba7e1ae91c3efda9df0ab99.tar.gz upstream-b5bd41edcd4457e16ba7e1ae91c3efda9df0ab99.tar.bz2 upstream-b5bd41edcd4457e16ba7e1ae91c3efda9df0ab99.zip |
mac80211: add cisco airo
airo depends on cfg80211, move it to mac80211
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
SVN-Revision: 49047
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/mac80211/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/package/kernel/mac80211/Makefile b/package/kernel/mac80211/Makefile index e168efd1ac..734b6fe749 100644 --- a/package/kernel/mac80211/Makefile +++ b/package/kernel/mac80211/Makefile @@ -24,6 +24,7 @@ PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org> PKG_DRIVERS = \ adm8211 \ + airo \ ath ath5k ath9k ath9k-common ath9k-htc ath10k \ b43 b43legacy \ carl9170 \ @@ -138,6 +139,18 @@ define KernelPackage/adm8211 AUTOLOAD:=$(call AutoProbe,adm8211) endef +define KernelPackage/airo + $(call KernelPackage/mac80211/Default) + TITLE:=Cisco Aironet driver + DEPENDS+=@PCI_SUPPORT +@DRIVER_WEXT_SUPPORT +kmod-cfg80211 + FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/cisco/airo.ko + AUTOLOAD:=$(call AutoProbe,airo) +endef + +define KernelPackage/airo/description + Kernel support for Cisco Aironet cards +endef + define KernelPackage/ath/config if PACKAGE_kmod-ath config ATH_USER_REGD @@ -1454,6 +1467,7 @@ config-y:= \ WLAN_VENDOR_ATH \ WLAN_VENDOR_ATMEL \ WLAN_VENDOR_BROADCOM \ + WLAN_VENDOR_CISCO \ WLAN_VENDOR_INTEL \ WLAN_VENDOR_INTERSIL \ WLAN_VENDOR_MARVELL \ @@ -1492,6 +1506,8 @@ endif config-$(call config_package,lib80211) += LIB80211 LIB80211_CRYPT_WEP LIB80211_CRYPT_CCMP LIB80211_CRYPT_TKIP +config-$(call config_package,airo) += AIRO + config-$(call config_package,ath) += ATH_CARDS ATH_COMMON config-$(CONFIG_PACKAGE_ATH_DEBUG) += ATH_DEBUG ATH10K_DEBUG config-$(CONFIG_PACKAGE_ATH_DFS) += ATH9K_DFS_CERTIFIED ATH10K_DFS_CERTIFIED @@ -1765,6 +1781,7 @@ endef $(eval $(call KernelPackage,adm8211)) +$(eval $(call KernelPackage,airo)) $(eval $(call KernelPackage,ath)) $(eval $(call KernelPackage,ath10k)) $(eval $(call KernelPackage,ath5k)) |