forked from mirror/openwrt
stm32: modules: fix stm32-hash package build
* Remove misplaced backslash to fix the build warning:
WARNING: can't parse line: FILES:=/drivers/crypto/stm32/stm32-hash.ko
* Add missing dependency package kmod-crypto-engine:
Package kmod-stm32-hash is missing dependencies for the following libraries:
crypto_engine.ko
Signed-off-by: Shiji Yang <yangshiji66@qq.com>
Link: https://github.com/openwrt/openwrt/pull/18241
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 4efb4a26d2)
This commit is contained in:
parent
cfd155aab9
commit
9db716b6dc
1 changed files with 2 additions and 1 deletions
|
|
@ -216,13 +216,14 @@ define KernelPackage/stm32-hash
|
|||
SUBMENU:=$(CRYPTO_MENU)
|
||||
TITLE:=Support for STM32 hash accelerators
|
||||
DEPENDS:=@TARGET_stm32 \
|
||||
+kmod-crypto-engine \
|
||||
+kmod-crypto-md5 \
|
||||
+kmod-crypto-sha1 \
|
||||
+kmod-crypto-sha256 \
|
||||
+kmod-crypto-sha3 \
|
||||
+kmod-crypto-rsa
|
||||
KCONFIG:=CONFIG_CRYPTO_DEV_STM32_HASH \
|
||||
CONFIG_CRYPTO_ENGINE=y \
|
||||
CONFIG_CRYPTO_ENGINE=y
|
||||
FILES:=$(LINUX_DIR)/drivers/crypto/stm32/stm32-hash.ko
|
||||
AUTOLOAD:=$(call AutoProbe,stm32-hash)
|
||||
endef
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue