1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 17:55:55 +02:00

[package] add XTS cipher CryptoAPI module

needed for proper dm-crypt support

Signed-off-by: Jan Willies <jan@willies.info>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22915 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2010-09-04 18:06:24 +00:00
parent 14d155196f
commit 569ffb7235

View File

@ -356,3 +356,20 @@ endef
$(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))