add XTS cipher CryptoAPI module
needed for proper dm-crypt support Signed-off-by: Jan Willies <jan@willies.info> SVN-Revision: 22915
This commit is contained in:
parent
0ca31140aa
commit
5bd1c17fd1
1 changed files with 17 additions and 0 deletions
|
@ -356,3 +356,20 @@ endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,crypto-test))
|
$(eval $(call KernelPackage,crypto-test))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/crypto-xts
|
||||||
|
TITLE:=XTS cipher CryptoAPI module
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_CRYPTO_GF128MUL \
|
||||||
|
CONFIG_CRYPTO_XTS
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/crypto/xts.ko \
|
||||||
|
$(LINUX_DIR)/crypto/gf128mul.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,09, \
|
||||||
|
gf128mul \
|
||||||
|
xts \
|
||||||
|
)
|
||||||
|
$(call AddDepends/crypto)
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,crypto-xts))
|
||||||
|
|
Loading…
Reference in a new issue