diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2015-08-09 17:18:10 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2015-08-09 17:18:10 +0000 |
commit | f9ebd0b1a47ba4f47a9f710d20ffb9aa52ffca85 (patch) | |
tree | bb4d98c05f8097bf2923a3ca1fc521a879181e12 /package | |
parent | aae0edf40574e55a2171d6a389c8f2e50344e704 (diff) | |
download | upstream-f9ebd0b1a47ba4f47a9f710d20ffb9aa52ffca85.tar.gz upstream-f9ebd0b1a47ba4f47a9f710d20ffb9aa52ffca85.tar.bz2 upstream-f9ebd0b1a47ba4f47a9f710d20ffb9aa52ffca85.zip |
kernel: crypto: fix depends in kmod-crypto-hmac
This module had two depends lines.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 46576
Diffstat (limited to 'package')
-rw-r--r-- | package/kernel/linux/modules/crypto.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index d530b1471a..2e245e37a9 100644 --- a/package/kernel/linux/modules/crypto.mk +++ b/package/kernel/linux/modules/crypto.mk @@ -380,10 +380,9 @@ $(eval $(call KernelPackage,crypto-ecb)) define KernelPackage/crypto-hmac TITLE:=HMAC digest CryptoAPI module - DEPENDS:=+kmod-crypto-hash + DEPENDS:=+kmod-crypto-hash +kmod-crypto-manager KCONFIG:=CONFIG_CRYPTO_HMAC FILES:=$(LINUX_DIR)/crypto/hmac.ko - DEPENDS:=+kmod-crypto-manager AUTOLOAD:=$(call AutoLoad,09,hmac) $(call AddDepends/crypto) endef |