mirror of https://github.com/hak5/openwrt.git
modules: crypto-rng changes additions for kernel 4.3
Signed-off-by: Daniel Golle <daniel@makrotopia.org> SVN-Revision: 47276lede-17.01
parent
b4564e3163
commit
9bcacd2853
|
@ -101,15 +101,25 @@ $(eval $(call KernelPackage,crypto-wq))
|
||||||
define KernelPackage/crypto-rng
|
define KernelPackage/crypto-rng
|
||||||
TITLE:=CryptoAPI random number generation
|
TITLE:=CryptoAPI random number generation
|
||||||
KCONFIG:=CONFIG_CRYPTO_RNG2
|
KCONFIG:=CONFIG_CRYPTO_RNG2
|
||||||
FILES:= \
|
FILES:=$(LINUX_DIR)/crypto/rng.ko
|
||||||
$(LINUX_DIR)/crypto/rng.ko \
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),lt,4.2.0)),1)
|
||||||
$(LINUX_DIR)/crypto/krng.ko
|
FILES+=$(LINUX_DIR)/crypto/krng.ko
|
||||||
|
endif
|
||||||
AUTOLOAD:=$(call AutoLoad,09,rng krng)
|
AUTOLOAD:=$(call AutoLoad,09,rng krng)
|
||||||
$(call AddDepends/crypto)
|
$(call AddDepends/crypto)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,crypto-rng))
|
$(eval $(call KernelPackage,crypto-rng))
|
||||||
|
|
||||||
|
define KernelPackage/crypto-rng-jitterentropy
|
||||||
|
TITLE:=Jitterentropy Non-Deterministic Random Number Generator
|
||||||
|
KCONFIG:=CONFIG_CRYPTO_JITTERENTROPY
|
||||||
|
FILES:= $(LINUX_DIR)/crypto/jitterentropy_rng.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,10,jitterentropy-rng)
|
||||||
|
$(call AddDepends/crypto)
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,crypto-rng-jitterentropy))
|
||||||
|
|
||||||
define KernelPackage/crypto-iv
|
define KernelPackage/crypto-iv
|
||||||
TITLE:=CryptoAPI initialization vectors
|
TITLE:=CryptoAPI initialization vectors
|
||||||
|
|
Loading…
Reference in New Issue