Explorar el Código

kernel/modules: kmod-crypto-xts: depend on kmod-crypto-gf128

Signed-off-by: Stijn Tintel <[email protected]>

SVN-Revision: 43836
Felix Fietkau hace 11 años
padre
commit
5a1f38ad0f
Se han modificado 1 ficheros con 4 adiciones y 11 borrados
  1. 4 11
      package/kernel/linux/modules/crypto.mk

+ 4 - 11
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