mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-17 20:09:41 +02:00
[package] kernel: the camellia module name has changed in kernel 3.4
With the support for architecture optimized camellia routines, the original camellia module got renamed to camellia_generic, account for that. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33903 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
3e5e86a2c2
commit
adf8e98542
@ -324,6 +324,9 @@ endef
|
|||||||
|
|
||||||
$(eval $(call KernelPackage,crypto-sha1))
|
$(eval $(call KernelPackage,crypto-sha1))
|
||||||
|
|
||||||
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.6.0)),1)
|
||||||
|
camellia_mod_suffix=_generic
|
||||||
|
endif
|
||||||
|
|
||||||
define KernelPackage/crypto-misc
|
define KernelPackage/crypto-misc
|
||||||
TITLE:=Other CryptoAPI modules
|
TITLE:=Other CryptoAPI modules
|
||||||
@ -347,7 +350,7 @@ define KernelPackage/crypto-misc
|
|||||||
CONFIG_CRYPTO_WP512
|
CONFIG_CRYPTO_WP512
|
||||||
FILES:= \
|
FILES:= \
|
||||||
$(LINUX_DIR)/crypto/anubis.ko \
|
$(LINUX_DIR)/crypto/anubis.ko \
|
||||||
$(LINUX_DIR)/crypto/camellia.ko \
|
$(LINUX_DIR)/crypto/camellia$(camellia_mod_suffix).ko \
|
||||||
$(LINUX_DIR)/crypto/cast5.ko \
|
$(LINUX_DIR)/crypto/cast5.ko \
|
||||||
$(LINUX_DIR)/crypto/cast6.ko \
|
$(LINUX_DIR)/crypto/cast6.ko \
|
||||||
$(LINUX_DIR)/crypto/fcrypt.ko \
|
$(LINUX_DIR)/crypto/fcrypt.ko \
|
||||||
|
Loading…
Reference in New Issue
Block a user