mirror of https://github.com/hak5/openwrt.git
kernel/modules: add OCTEON SHA256 module
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be> SVN-Revision: 47477lede-17.01
parent
34558e6535
commit
54b305796d
|
@ -492,12 +492,19 @@ $(eval $(call KernelPackage,crypto-sha1))
|
||||||
define KernelPackage/crypto-sha256
|
define KernelPackage/crypto-sha256
|
||||||
TITLE:=SHA224 SHA256 digest CryptoAPI module
|
TITLE:=SHA224 SHA256 digest CryptoAPI module
|
||||||
DEPENDS:=+kmod-crypto-hash
|
DEPENDS:=+kmod-crypto-hash
|
||||||
KCONFIG:=CONFIG_CRYPTO_SHA256
|
KCONFIG:= \
|
||||||
|
CONFIG_CRYPTO_SHA256 \
|
||||||
|
CONFIG_CRYPTO_SHA256_OCTEON
|
||||||
FILES:=$(LINUX_DIR)/crypto/sha256_generic.ko
|
FILES:=$(LINUX_DIR)/crypto/sha256_generic.ko
|
||||||
AUTOLOAD:=$(call AutoLoad,09,sha256_generic)
|
AUTOLOAD:=$(call AutoLoad,09,sha256_generic)
|
||||||
$(call AddDepends/crypto)
|
$(call AddDepends/crypto)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/crypto-sha256/octeon
|
||||||
|
FILES+=$(LINUX_DIR)/arch/mips/cavium-octeon/crypto/octeon-sha256.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,09,octeon-sha256)
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,crypto-sha256))
|
$(eval $(call KernelPackage,crypto-sha256))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue