summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorYoann Congal <yoann.congal@smile.fr>2026-02-24 10:29:19 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2026-02-27 17:45:07 +0000
commitef014bdb96bbd2e3f2238a3acc3e04256e07d2f4 (patch)
tree2ec3c86c6add5ffd804f5f5becb6d67937710b50 /meta
parentce6c38960787cdad293cdce63d6e2e8b6b6987c5 (diff)
downloadpoky-ef014bdb96bbd2e3f2238a3acc3e04256e07d2f4.tar.gz
u-boot: move CVE patches out of the common .inc file
An external layer might use the u-boot*.inc files but have a different base version for which the CVE patches don't apply. Move the CVE patches in the leaf recipe. See related patch in kirkstone: [kirkstone][PATCH] u-boot: move CVE patch out of u-boot-common.inc https://lists.openembedded.org/g/openembedded-core/topic/117385432 (From OE-Core rev: f4ced8ff03147dd532a88cf3ce08d61fab057522) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Paul Barker <paul@pbarker.dev> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-bsp/u-boot/u-boot-common.inc12
-rw-r--r--meta/recipes-bsp/u-boot/u-boot_2024.01.bb10
2 files changed, 11 insertions, 11 deletions
diff --git a/meta/recipes-bsp/u-boot/u-boot-common.inc b/meta/recipes-bsp/u-boot/u-boot-common.inc
index da34e3d3e8..1f17bd7d0a 100644
--- a/meta/recipes-bsp/u-boot/u-boot-common.inc
+++ b/meta/recipes-bsp/u-boot/u-boot-common.inc
@@ -14,17 +14,7 @@ PE = "1"
14# repo during parse 14# repo during parse
15SRCREV = "866ca972d6c3cabeaf6dbac431e8e08bb30b3c8e" 15SRCREV = "866ca972d6c3cabeaf6dbac431e8e08bb30b3c8e"
16 16
17SRC_URI = "git://source.denx.de/u-boot/u-boot.git;protocol=https;branch=master \ 17SRC_URI = "git://source.denx.de/u-boot/u-boot.git;protocol=https;branch=master"
18 file://CVE-2024-57254.patch \
19 file://CVE-2024-57255.patch \
20 file://CVE-2024-57256.patch \
21 file://CVE-2024-57257.patch \
22 file://CVE-2024-57258-1.patch \
23 file://CVE-2024-57258-2.patch \
24 file://CVE-2024-57258-3.patch \
25 file://CVE-2024-57259.patch \
26 file://CVE-2024-42040.patch \
27"
28 18
29S = "${WORKDIR}/git" 19S = "${WORKDIR}/git"
30B = "${WORKDIR}/build" 20B = "${WORKDIR}/build"
diff --git a/meta/recipes-bsp/u-boot/u-boot_2024.01.bb b/meta/recipes-bsp/u-boot/u-boot_2024.01.bb
index b15bcaa818..e412f503f1 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2024.01.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2024.01.bb
@@ -3,3 +3,13 @@ require u-boot.inc
3 3
4DEPENDS += "bc-native dtc-native python3-pyelftools-native" 4DEPENDS += "bc-native dtc-native python3-pyelftools-native"
5 5
6SRC_URI += "file://CVE-2024-57254.patch \
7 file://CVE-2024-57255.patch \
8 file://CVE-2024-57256.patch \
9 file://CVE-2024-57257.patch \
10 file://CVE-2024-57258-1.patch \
11 file://CVE-2024-57258-2.patch \
12 file://CVE-2024-57258-3.patch \
13 file://CVE-2024-57259.patch \
14 file://CVE-2024-42040.patch \
15"