kernel: modules: activate wpan on kernel 4.1
Make wpan depend on not kernel 3.18 so it will get activated on all other kernel versions like 4.0 and 4.1. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 46276
This commit is contained in:
parent
7a04fd0e3a
commit
f60082f548
1 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ WPAN_MENU:=WPAN 802.15.4 Support
|
|||
define KernelPackage/ieee802154
|
||||
SUBMENU:=$(WPAN_MENU)
|
||||
TITLE:=IEEE-802.15.4 support
|
||||
DEPENDS:=@LINUX_4_0
|
||||
DEPENDS:=@!LINUX_3_18
|
||||
KCONFIG:= \
|
||||
CONFIG_IEEE802154 \
|
||||
CONFIG_IEEE802154_SOCKET=y
|
||||
|
@ -32,7 +32,7 @@ $(eval $(call KernelPackage,ieee802154))
|
|||
define KernelPackage/mac802154
|
||||
SUBMENU:=$(WPAN_MENU)
|
||||
TITLE:=MAC-802.15.4 support
|
||||
DEPENDS:=+kmod-ieee802154 +kmod-crypto-aead +kmod-lib-crc-ccitt @LINUX_4_0
|
||||
DEPENDS:=+kmod-ieee802154 +kmod-crypto-aead +kmod-lib-crc-ccitt @!LINUX_3_18
|
||||
KCONFIG:= \
|
||||
CONFIG_MAC802154 \
|
||||
CONFIG_IEEE802154_DRIVERS=y
|
||||
|
@ -55,7 +55,7 @@ $(eval $(call KernelPackage,mac802154))
|
|||
define KernelPackage/fakelb
|
||||
SUBMENU:=$(WPAN_MENU)
|
||||
TITLE:=Fake LR-WPAN driver
|
||||
DEPENDS:=+kmod-mac802154 @LINUX_4_0
|
||||
DEPENDS:=+kmod-mac802154 @!LINUX_3_18
|
||||
KCONFIG:=CONFIG_IEEE802154_FAKELB
|
||||
FILES:=$(LINUX_DIR)/drivers/net/ieee802154/fakelb.ko
|
||||
AUTOLOAD:=$(call AutoLoad,92,fakelb)
|
||||
|
@ -107,7 +107,7 @@ $(eval $(call KernelPackage,cc2520))
|
|||
define KernelPackage/ieee802154_6lowpan
|
||||
SUBMENU:=$(WPAN_MENU)
|
||||
TITLE:= 6LoWPAN support over IEEE-802.15.4
|
||||
DEPENDS:=@LINUX_4_0 +kmod-6lowpan
|
||||
DEPENDS:=@!LINUX_3_18 +kmod-6lowpan
|
||||
KCONFIG:=CONFIG_IEEE802154_6LOWPAN
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/net/ieee802154/6lowpan/ieee802154_6lowpan.ko@ge4.0 \
|
||||
|
|
Loading…
Reference in a new issue