diff options
author | John Crispin <john@openwrt.org> | 2016-03-23 12:52:24 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2016-03-23 12:52:24 +0000 |
commit | 63a9c61fb609311b1afb6ff3815daa61a00f6fd3 (patch) | |
tree | 0f6c91c57d65e9de842834dd27fc2026df8a886a /package/kernel | |
parent | 58143e9b65eb9462b2ad822b89c40ceb19e13f58 (diff) | |
download | upstream-63a9c61fb609311b1afb6ff3815daa61a00f6fd3.tar.gz upstream-63a9c61fb609311b1afb6ff3815daa61a00f6fd3.tar.bz2 upstream-63a9c61fb609311b1afb6ff3815daa61a00f6fd3.zip |
mac80211: build airo on x86 only
airo requires ISA_DMA_API and
that symbol is only set on some ppc,malta,x86
x86 is probably only platform where that driver is used
fixes buildbot errors on ar71xx,lantiq ...:
airo.ko is missing
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
SVN-Revision: 49073
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/mac80211/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/mac80211/Makefile b/package/kernel/mac80211/Makefile index 734b6fe749..4ab3899133 100644 --- a/package/kernel/mac80211/Makefile +++ b/package/kernel/mac80211/Makefile @@ -142,7 +142,7 @@ endef define KernelPackage/airo $(call KernelPackage/mac80211/Default) TITLE:=Cisco Aironet driver - DEPENDS+=@PCI_SUPPORT +@DRIVER_WEXT_SUPPORT +kmod-cfg80211 + DEPENDS+=@PCI_SUPPORT +@DRIVER_WEXT_SUPPORT +kmod-cfg80211 @TARGET_x86 FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/cisco/airo.ko AUTOLOAD:=$(call AutoProbe,airo) endef |