mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-11 20:40:15 +02:00
[package] kernel: add kmod-crypto-user
Add kernel crypto user-space interface (af_alg). Includes interface for hash algorithms (algif_hash) and skcipher algorithms (algif_skcipher). Signed-off-by: Lars Hjersted <lars@hjersted.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28026 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
41f0999b88
commit
5ebb84b67b
@ -62,6 +62,22 @@ define KernelPackage/crypto-manager
|
|||||||
endef
|
endef
|
||||||
$(eval $(call KernelPackage,crypto-manager))
|
$(eval $(call KernelPackage,crypto-manager))
|
||||||
|
|
||||||
|
define KernelPackage/crypto-user
|
||||||
|
TITLE:=CryptoAPI userspace interface
|
||||||
|
DEPENDS:=+kmod-crypto-hash +kmod-crypto-manager @LINUX_2_6_38||LINUX_2_6_39||LINUX_3_0
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_CRYPTO_USER_API \
|
||||||
|
CONFIG_CRYPTO_USER_API_HASH \
|
||||||
|
CONFIG_CRYPTO_USER_API_SKCIPHER
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/crypto/af_alg.ko \
|
||||||
|
$(LINUX_DIR)/crypto/algif_hash.ko \
|
||||||
|
$(LINUX_DIR)/crypto/algif_skcipher.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,09,af_alg algif_hash algif_skcipher)
|
||||||
|
$(call AddDepends/crypto)
|
||||||
|
endef
|
||||||
|
$(eval $(call KernelPackage,crypto-user))
|
||||||
|
|
||||||
define KernelPackage/crypto-wq
|
define KernelPackage/crypto-wq
|
||||||
TITLE:=CryptoAPI work queue handling
|
TITLE:=CryptoAPI work queue handling
|
||||||
KCONFIG:=CONFIG_CRYPTO_WORKQUEUE
|
KCONFIG:=CONFIG_CRYPTO_WORKQUEUE
|
||||||
|
Loading…
Reference in New Issue
Block a user