projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add the gpio_keys input module to menuconfig
[openwrt.git]
/
package
/
kernel
/
modules
/
crypto.mk
diff --git
a/package/kernel/modules/crypto.mk
b/package/kernel/modules/crypto.mk
index
530ca39
..
e2361a2
100644
(file)
--- a/
package/kernel/modules/crypto.mk
+++ b/
package/kernel/modules/crypto.mk
@@
-28,17
+28,25
@@
endif
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.26)),1)
SHA512_SUFFIX:=$(CRYPTO_GENERIC)
endif
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.26)),1)
SHA512_SUFFIX:=$(CRYPTO_GENERIC)
endif
+AEAD_CONF:=AEAD
+MANAGER_CONF:=MANAGER
+BLKCIPHER_CONF:=BLKCIPHER
+HASH_CONF:=HASH
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.30)),1)
CRYPTO_MODULE_PCOMPRESS:=PCOMP=pcompress
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.30)),1)
CRYPTO_MODULE_PCOMPRESS:=PCOMP=pcompress
+ AEAD_CONF:=AEAD2
+ MANAGER_CONF:=MANAGER2
+ BLKCIPHER_CONF:=BLKCIPHER2
+ HASH_CONF:=HASH2
endif
CRYPTO_MODULES = \
ALGAPI=crypto_algapi \
endif
CRYPTO_MODULES = \
ALGAPI=crypto_algapi \
-
AEAD
=aead \
+
$(AEAD_CONF)
=aead \
$(CRYPTO_MODULE_PCOMPRESS) \
$(CRYPTO_MODULE_PCOMPRESS) \
-
BLKCIPHER
=$(BLKCIPHER_PREFIX)blkcipher \
-
HASH
=crypto_hash \
-
MANAGER
=cryptomgr \
+
$(BLKCIPHER_CONF)
=$(BLKCIPHER_PREFIX)blkcipher \
+
$(HASH_CONF)
=crypto_hash \
+
$(MANAGER_CONF)
=cryptomgr \
CBC=cbc \
ECB=ecb \
DEFLATE=deflate
CBC=cbc \
ECB=ecb \
DEFLATE=deflate
@@
-117,7
+125,9
@@
define KernelPackage/crypto-hw-ixp4xx
TITLE:=Intel IXP4xx hardware crypto module
DEPENDS:= \
@TARGET_ixp4xx +kmod-crypto-core +kmod-crypto-des +kmod-crypto-authenc
TITLE:=Intel IXP4xx hardware crypto module
DEPENDS:= \
@TARGET_ixp4xx +kmod-crypto-core +kmod-crypto-des +kmod-crypto-authenc
- KCONFIG:= CONFIG_CRYPTO_DEV_IXP4XX
+ KCONFIG:= \
+ CONFIG_CRYPTO_HW=y \
+ CONFIG_CRYPTO_DEV_IXP4XX
FILES:=$(LINUX_DIR)/drivers/crypto/ixp4xx_crypto.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,90,ixp4xx_crypto)
endef
FILES:=$(LINUX_DIR)/drivers/crypto/ixp4xx_crypto.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,90,ixp4xx_crypto)
endef
This page took
0.027124 seconds
and
4
git commands to generate.