projects
/
openwrt
/
staging
/
chunkeey.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3612d90
)
kernel: change dependency of kmod-ebtables-* on kmod-ebtables to selecting
author
Matthias Schiffer
<
[email protected]
>
Mon, 9 Apr 2018 16:51:57 +0000
(18:51 +0200)
committer
Matthias Schiffer
<
[email protected]
>
Mon, 9 Apr 2018 16:51:57 +0000
(18:51 +0200)
Non-selecting dependencies easily lead to Kconfig failures due to recursive
dependencies. We hit such an issue in Gluon; the easiest fix is to make
the dependency selecting.
Signed-off-by: Matthias Schiffer <
[email protected]
>
package/kernel/linux/modules/netfilter.mk
patch
|
blob
|
history
diff --git
a/package/kernel/linux/modules/netfilter.mk
b/package/kernel/linux/modules/netfilter.mk
index f296a9096ed244d4c889c5f0f4478543ebf19177..295cf7671b48cfcb95a28d80fe8d6fab153a0aea 100644
(file)
--- a/
package/kernel/linux/modules/netfilter.mk
+++ b/
package/kernel/linux/modules/netfilter.mk
@@
-784,7
+784,7
@@
$(eval $(call KernelPackage,ebtables))
define AddDepends/ebtables
SUBMENU:=$(NF_MENU)
- DEPENDS+=kmod-ebtables $(1)
+ DEPENDS+=
+
kmod-ebtables $(1)
endef