summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2014-06-17 03:07:55 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-06-18 09:10:36 +0200
commit4559feb42fc351341f08a802e78500dafdd87bb6 (patch)
treed19cacca24c8faa7fc2b41646038c2fc9fff0631 /mk
parent7959909ddcad06f9728ed1b1ec1edddd6889ae95 (diff)
mk/modules.mk: crypto fixes
Add some missing dependencies for cryptomgr.ko Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'mk')
-rw-r--r--mk/modules.mk8
1 files changed, 8 insertions, 0 deletions
diff --git a/mk/modules.mk b/mk/modules.mk
index 19070c365..f0c3dcc8d 100644
--- a/mk/modules.mk
+++ b/mk/modules.mk
@@ -846,11 +846,19 @@ $(eval $(call KMOD_template,CRYPTO_HASH2,crypto-hash,\
$(MODULES_DIR)/kernel/crypto/crypto_hash \
,04))
+$(eval $(call KMOD_template,CRYPTO_BLKCIPHER2,crypto-blkcipher,\
+ $(MODULES_DIR)/kernel/crypto/crypto_blkcipher \
+,05))
+
$(eval $(call KMOD_template,CRYPTO_RNG2,crypto-rng,\
$(MODULES_DIR)/kernel/crypto/rng \
$(MODULES_DIR)/kernel/crypto/krng \
,06))
+$(eval $(call KMOD_template,CRYPTO_WORKQUEUE,crypto-wq,\
+ $(MODULES_DIR)/kernel/crypto/crypto_wq \
+,07))
+
$(eval $(call KMOD_template,CRYPTO_MANAGER2,crypto-manager,\
$(MODULES_DIR)/kernel/crypto/cryptomgr \
$(MODULES_DIR)/kernel/crypto/eseqiv \