mirror of
https://git.yoctoproject.org/poky
synced 2026-02-26 19:39:40 +01:00
Upgrade cryptodev to new release 1.13. This resoves the Kernel build issues for 6.3.y, where Crypto API has been updated, see [1]. Refresh all layer patches with `devtool` to resolve hunks. Link: [1]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=255e48eb17684157336bd6dd98d22c1b2d9e3f43 (From OE-Core rev: dc85b747af14f5262590e72e55d2c49670cf09a7) Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
811 B
Diff
26 lines
811 B
Diff
From 47438e53e1156db0916c0f4683a24fe4d82152f2 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex@linutronix.de>
|
|
Date: Fri, 10 Sep 2021 10:44:42 +0200
|
|
Subject: [PATCH] tests/Makefile: do not use -Werror
|
|
|
|
Otherwise, openssl 3 deprecation warnings become errors.
|
|
Reported at https://github.com/cryptodev-linux/cryptodev-linux/issues/67
|
|
|
|
Upstream-Status: Inappropriate [upstream needs to update the code]
|
|
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
|
|
|
---
|
|
tests/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/Makefile b/tests/Makefile
|
|
index 2fb7a9a..e94f80e 100644
|
|
--- a/tests/Makefile
|
|
+++ b/tests/Makefile
|
|
@@ -1,4 +1,4 @@
|
|
-CFLAGS += -I.. $(CRYPTODEV_CFLAGS) -Wall -Werror
|
|
+CFLAGS += -I.. $(CRYPTODEV_CFLAGS) -Wall
|
|
|
|
comp_progs := cipher_comp hash_comp hmac_comp
|
|
|