projects
/
openwrt
/
staging
/
pepe2k.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfd155a
)
stm32: modules: fix stm32-hash package build
author
Shiji Yang
<
[email protected]
>
Fri, 14 Mar 2025 11:19:11 +0000
(19:19 +0800)
committer
Hauke Mehrtens
<
[email protected]
>
Mon, 17 Mar 2025 15:21:23 +0000
(16:21 +0100)
* 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 <
[email protected]
>
Link:
https://github.com/openwrt/openwrt/pull/18241
Signed-off-by: Hauke Mehrtens <
[email protected]
>
(cherry picked from commit
4efb4a26d28ecdd5fec9dc3a85bcb46a45a75f60
)
target/linux/stm32/modules.mk
patch
|
blob
|
history
diff --git
a/target/linux/stm32/modules.mk
b/target/linux/stm32/modules.mk
index baba80baba43aabea11920135be9bc559497dde9..2a9ec36e46d930af3157d2f398d39884b82b287a 100644
(file)
--- a/
target/linux/stm32/modules.mk
+++ b/
target/linux/stm32/modules.mk
@@
-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