mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-30 01:52:51 +00:00
42 lines
1.5 KiB
Diff
42 lines
1.5 KiB
Diff
From 529a2f90904082bcf1d38ab5c341d28b59ce1fcf Mon Sep 17 00:00:00 2001
|
|
From: John Crispin <john@phrozen.org>
|
|
Date: Sun, 30 Aug 2020 09:20:03 +0200
|
|
Subject: [PATCH 30/40] linux/modules: fix some v4.4 dependencies
|
|
|
|
NFT has different deps on v4.4.
|
|
|
|
Signed-off-by: John Crispin <john@phrozen.org>
|
|
---
|
|
package/kernel/linux/modules/netfilter.mk | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/package/kernel/linux/modules/netfilter.mk b/package/kernel/linux/modules/netfilter.mk
|
|
index 53188eab5a..01bbc88f5e 100644
|
|
--- a/package/kernel/linux/modules/netfilter.mk
|
|
+++ b/package/kernel/linux/modules/netfilter.mk
|
|
@@ -259,7 +259,7 @@ define KernelPackage/ipt-ipopt
|
|
KCONFIG:=$(KCONFIG_IPT_IPOPT)
|
|
FILES:=$(foreach mod,$(IPT_IPOPT-m),$(LINUX_DIR)/net/$(mod).ko)
|
|
AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_IPOPT-m)))
|
|
- $(call AddDepends/ipt)
|
|
+ $(call AddDepends/ipt,+kmod-nf-conntrack)
|
|
endef
|
|
|
|
define KernelPackage/ipt-ipopt/description
|
|
@@ -1160,9 +1160,9 @@ define KernelPackage/nft-netdev
|
|
CONFIG_NFT_FWD_NETDEV
|
|
FILES:= \
|
|
$(LINUX_DIR)/net/netfilter/nf_tables_netdev.ko@lt4.17 \
|
|
- $(LINUX_DIR)/net/netfilter/nf_dup_netdev.ko \
|
|
- $(LINUX_DIR)/net/netfilter/nft_dup_netdev.ko \
|
|
- $(LINUX_DIR)/net/netfilter/nft_fwd_netdev.ko
|
|
+ $(LINUX_DIR)/net/netfilter/nf_dup_netdev.ko@gt4.5 \
|
|
+ $(LINUX_DIR)/net/netfilter/nft_dup_netdev.ko@gt4.5 \
|
|
+ $(LINUX_DIR)/net/netfilter/nft_fwd_netdev.ko@gt4.5
|
|
AUTOLOAD:=$(call AutoProbe,nf_tables_netdev nf_dup_netdev nft_dup_netdev nft_fwd_netdev)
|
|
endef
|
|
|
|
--
|
|
2.25.1
|
|
|