diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-01-05 13:01:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-01-05 13:01:23 +0000 |
commit | 2203f4d6e08848e04ac12c03922f0c048d16e2c6 (patch) | |
tree | 2993c31ed53855c1e70576de611a7b0b7cae49ff | |
parent | b15f09baec7f0e51fdd34d337e970bda07ec7e4a (diff) | |
download | upstream-2203f4d6e08848e04ac12c03922f0c048d16e2c6.tar.gz upstream-2203f4d6e08848e04ac12c03922f0c048d16e2c6.tar.bz2 upstream-2203f4d6e08848e04ac12c03922f0c048d16e2c6.zip |
kernel/modules: add kmod-crypto-aead
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
SVN-Revision: 43830
-rw-r--r-- | package/kernel/linux/modules/crypto.mk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index de3d851442..ad1fe4e723 100644 --- a/package/kernel/linux/modules/crypto.mk +++ b/package/kernel/linux/modules/crypto.mk @@ -39,6 +39,19 @@ define AddDepends/crypto DEPENDS+=+kmod-crypto-core $(1) endef +define KernelPackage/crypto-aead + TITLE:=CryptoAPI AEAD support + KCONFIG:= \ + CONFIG_CRYPTO_AEAD \ + CONFIG_CRYPTO_AEAD2 + FILES:=$(LINUX_DIR)/crypto/aead.ko + AUTOLOAD:=$(call AutoLoad,09,crypto_aead,1) + $(call AddDepends/crypto) +endef + +$(eval $(call KernelPackage,crypto-aead)) + + define KernelPackage/crypto-hash TITLE:=CryptoAPI hash support KCONFIG:=CONFIG_CRYPTO_HASH |