mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Recent changes to the selftest-hello recipe caused the patchtest selftest patches to not apply cleanly, which in turn meant several tests weren't being fully executed or were reporting unexpected PASS/SKIP. Update all of the test patch files to use a newer baseline and apply cleanly again. (From OE-Core rev: d73373d8a590d68e448af2e9ac600adc85777604) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
63 lines
2.1 KiB
Plaintext
63 lines
2.1 KiB
Plaintext
From c9519f11502d5bb5c143ed43b4c981b6a211bdf9 Mon Sep 17 00:00:00 2001
|
|
From: Trevor Gamblin <tgamblin@baylibre.com>
|
|
Date: Fri, 31 May 2024 09:54:50 -0400
|
|
Subject: [PATCH] selftest-hello: fix CVE-1234-56789
|
|
|
|
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
|
|
---
|
|
.../files/0001-Fix-CVE-1234-56789.patch | 26 +++++++++++++++++++
|
|
.../selftest-hello/selftest-hello_1.0.bb | 4 ++-
|
|
2 files changed, 29 insertions(+), 1 deletion(-)
|
|
create mode 100644 meta-selftest/recipes-test/selftest-hello/files/0001-Fix-CVE-1234-56789.patch
|
|
|
|
diff --git a/meta-selftest/recipes-test/selftest-hello/files/0001-Fix-CVE-1234-56789.patch b/meta-selftest/recipes-test/selftest-hello/files/0001-Fix-CVE-1234-56789.patch
|
|
new file mode 100644
|
|
index 00000000000..8a4f9329303
|
|
--- /dev/null
|
|
+++ b/meta-selftest/recipes-test/selftest-hello/files/0001-Fix-CVE-1234-56789.patch
|
|
@@ -0,0 +1,26 @@
|
|
+From b26a31186e6ee2eb1f506d5f2f9394d327a0df2f Mon Sep 17 00:00:00 2001
|
|
+From: Trevor Gamblin <tgamblin@baylibre.com>
|
|
+Date: Tue, 29 Aug 2023 14:08:20 -0400
|
|
+Subject: [PATCH] Fix CVE-NOT-REAL
|
|
+
|
|
+CVE: CVE-1234-56789
|
|
+Upstream-Status: Backport(http://example.com/example)
|
|
+
|
|
+Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
|
|
+---
|
|
+ strlen.c | 1 +
|
|
+ 1 file changed, 1 insertion(+)
|
|
+
|
|
+diff --git a/strlen.c b/strlen.c
|
|
+index 1788f38..83d7918 100644
|
|
+--- a/strlen.c
|
|
++++ b/strlen.c
|
|
+
|
|
+int main() {
|
|
+
|
|
+ printf("%d\n", str_len(string1));
|
|
+ printf("%d\n", str_len(string2));
|
|
+ printf("CVE FIXED!!!\n");
|
|
+
|
|
+ return 0;
|
|
+}
|
|
diff --git a/meta-selftest/recipes-test/selftest-hello/selftest-hello_1.0.bb b/meta-selftest/recipes-test/selftest-hello/selftest-hello_1.0.bb
|
|
index 2dc352d479e..d937759f157 100644
|
|
--- a/meta-selftest/recipes-test/selftest-hello/selftest-hello_1.0.bb
|
|
+++ b/meta-selftest/recipes-test/selftest-hello/selftest-hello_1.0.bb
|
|
@@ -3,7 +3,9 @@ SECTION = "examples"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
-SRC_URI = "file://helloworld.c"
|
|
+SRC_URI = "file://helloworld.c \
|
|
+ file://0001-Fix-CVE-1234-56789.patch \
|
|
+ "
|
|
|
|
S = "${WORKDIR}/sources"
|
|
UNPACKDIR = "${S}"
|
|
--
|
|
2.45.1
|
|
|