diff mbox

[LEDE-DEV] xtables-addons: fix kmod-ipt-sysrq missing crypto_hash dependency

Message ID 1465424992-23912-1-git-send-email-chunkeey@gmail.com
State Superseded
Headers show

Commit Message

Christian Lamparter June 8, 2016, 10:29 p.m. UTC
This patch fixes the following dependency issue when building
kmod-ipt-sysrq module package from xtable-addons library:
"Package kmod-ipt-sysrq is missing dependencies for the following libraries:"
crypto_hash.ko"

By looking at the code, the kmod-ipt-sysrq module just needs
an additional dependency on kmod-crypto-manager.

Cc: Dirk Neukirchen <dirkneukirchen@web.de>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
---
 package/network/utils/xtables-addons/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/package/network/utils/xtables-addons/Makefile b/package/network/utils/xtables-addons/Makefile
index 0842e11..9224922 100644
--- a/package/network/utils/xtables-addons/Makefile
+++ b/package/network/utils/xtables-addons/Makefile
@@ -145,7 +145,7 @@  $(eval $(call BuildTemplate,lscan,lscan,xt_lscan,xt_lscan,))
 $(eval $(call BuildTemplate,lua,Lua PacketScript,xt_LUA,LUA/xt_LUA,+kmod-ipt-conntrack-extra))
 $(eval $(call BuildTemplate,psd,psd,xt_psd,xt_psd,))
 $(eval $(call BuildTemplate,quota2,quota2,xt_quota2,xt_quota2,))
-$(eval $(call BuildTemplate,sysrq,SYSRQ,xt_SYSRQ,xt_SYSRQ,+kmod-ipt-compat-xtables))
+$(eval $(call BuildTemplate,sysrq,SYSRQ,xt_SYSRQ,xt_SYSRQ,+kmod-ipt-compat-xtables +kmod-crypto-manager))
 $(eval $(call BuildTemplate,tarpit,TARPIT,xt_TARPIT,xt_TARPIT,+kmod-ipt-compat-xtables))
 
 $(eval $(call BuildPackage,iptaccount))