diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-01-05 13:02:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-01-05 13:02:01 +0000 |
commit | 5a1f38ad0ff7776f8f1c99326f093aafcc5224cc (patch) | |
tree | 3fcc38d2d4b9a19bdaa658060c842d25c8f25394 /package/kernel/linux | |
parent | 4c4c51af2dfcc3dbc9545b029816c381458e9a7f (diff) | |
download | upstream-5a1f38ad0ff7776f8f1c99326f093aafcc5224cc.tar.gz upstream-5a1f38ad0ff7776f8f1c99326f093aafcc5224cc.tar.bz2 upstream-5a1f38ad0ff7776f8f1c99326f093aafcc5224cc.zip |
kernel/modules: kmod-crypto-xts: depend on kmod-crypto-gf128
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
SVN-Revision: 43836
Diffstat (limited to 'package/kernel/linux')
-rw-r--r-- | package/kernel/linux/modules/crypto.mk | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index 5d49160959..eec7934f16 100644 --- a/package/kernel/linux/modules/crypto.mk +++ b/package/kernel/linux/modules/crypto.mk @@ -594,17 +594,10 @@ $(eval $(call KernelPackage,crypto-test)) define KernelPackage/crypto-xts TITLE:=XTS cipher CryptoAPI module - DEPENDS:=+kmod-crypto-manager - KCONFIG:= \ - CONFIG_CRYPTO_GF128MUL \ - CONFIG_CRYPTO_XTS - FILES:= \ - $(LINUX_DIR)/crypto/xts.ko \ - $(LINUX_DIR)/crypto/gf128mul.ko - AUTOLOAD:=$(call AutoLoad,09, \ - gf128mul \ - xts \ - ) + DEPENDS:=+kmod-crypto-gf128 +kmod-crypto-manager + KCONFIG:=CONFIG_CRYPTO_XTS + FILES:=$(LINUX_DIR)/crypto/xts.ko + AUTOLOAD:=$(call AutoLoad,09,xts) $(call AddDepends/crypto) endef |