diff options
author | Jonas Gorski <jogo@openwrt.org> | 2015-12-03 11:01:34 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2015-12-03 11:01:34 +0000 |
commit | 418a9d49727269ccf588094adc938b8dd974fbb5 (patch) | |
tree | 744c2dd929673b4b740d29cdf9e5eb4c76fc018e | |
parent | 9f3300393abca4b47dbe7185cb41e0076bc1065e (diff) | |
download | upstream-418a9d49727269ccf588094adc938b8dd974fbb5.tar.gz upstream-418a9d49727269ccf588094adc938b8dd974fbb5.tar.bz2 upstream-418a9d49727269ccf588094adc938b8dd974fbb5.zip |
mac80211: put the !LINUX_4_4 dependency in the right place
Make sure all sub packages are marked as not building for 4.4.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 47712
-rw-r--r-- | package/kernel/mac80211/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/kernel/mac80211/Makefile b/package/kernel/mac80211/Makefile index bbc7ee0497..46d5420c0d 100644 --- a/package/kernel/mac80211/Makefile +++ b/package/kernel/mac80211/Makefile @@ -71,6 +71,7 @@ WMENU:=Wireless Drivers define KernelPackage/mac80211/Default SUBMENU:=$(WMENU) + DEPENDS:=@!LINUX_4_4 URL:=https://wireless.wiki.kernel.org/ MAINTAINER:=Felix Fietkau <nbd@openwrt.org> endef @@ -78,7 +79,7 @@ endef define KernelPackage/cfg80211 $(call KernelPackage/mac80211/Default) TITLE:=cfg80211 - wireless configuration API - DEPENDS+= +iw @!LINUX_4_4 + DEPENDS+= +iw FILES:= \ $(PKG_BUILD_DIR)/compat/compat.ko \ $(PKG_BUILD_DIR)/net/wireless/cfg80211.ko |