Author: nbd Date: 2015-03-29 07:20:50 +0200 (Sun, 29 Mar 2015) New Revision: 45123
Modified: trunk/package/kernel/linux/modules/crypto.mk Log: linux: modules: crypto: adds ccm package This patch adds support crypto-ccm modules support. Signed-off-by: Varka Bhadram <[email protected]> Modified: trunk/package/kernel/linux/modules/crypto.mk =================================================================== --- trunk/package/kernel/linux/modules/crypto.mk 2015-03-29 05:16:13 UTC (rev 45122) +++ trunk/package/kernel/linux/modules/crypto.mk 2015-03-29 05:20:50 UTC (rev 45123) @@ -316,6 +316,17 @@ $(eval $(call KernelPackage,crypto-ctr)) +define KernelPackage/crypto-ccm + TITLE:=Support for Counter with CBC MAC (CCM) + DEPENDS:=+kmod-crypto-ctr +kmod-crypto-aead + KCONFIG:=CONFIG_CRYPTO_CCM + FILES:=$(LINUX_DIR)/crypto/ccm.ko + AUTOLOAD:=$(call AutoLoad,09,ccm) + $(call AddDepends/crypto) +endef + +$(eval $(call KernelPackage,crypto-ccm)) + define KernelPackage/crypto-pcbc TITLE:=Propagating Cipher Block Chaining CryptoAPI module DEPENDS:=+kmod-crypto-manager _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
