summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Eatmon <reatmon@ti.com>2024-07-17 12:11:39 -0500
committerRyan Eatmon <reatmon@ti.com>2024-07-17 19:50:48 -0500
commit6b591287e841af5a41d790d66fba9048c7c20088 (patch)
treed9126055ff6fe1a685840edc950cc35233c38799
parent40cfbe214e85292c025506a075398962f935019c (diff)
downloadmeta-ti-6b591287e841af5a41d790d66fba9048c7c20088.tar.gz
linux: Fix assignment of SRC_URI for patches
Testing shows that the SRC_URI += does not work for adding the new patches. += takes place during parsing, we want :append instead to make sure that no matter what SRC_URI is in the various kernel recipes, that we we append the patches to the end. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-ti-bsp/recipes-kernel/linux/ti-kernel.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-ti-bsp/recipes-kernel/linux/ti-kernel.inc b/meta-ti-bsp/recipes-kernel/linux/ti-kernel.inc
index 43d2341a..f24fbe51 100644
--- a/meta-ti-bsp/recipes-kernel/linux/ti-kernel.inc
+++ b/meta-ti-bsp/recipes-kernel/linux/ti-kernel.inc
@@ -13,7 +13,7 @@ EXTRA_DTC_ARGS += "${@get_extra_dtc_args(d)}"
13KERNEL_DTBDEST = "${KERNEL_IMAGEDEST}/dtb" 13KERNEL_DTBDEST = "${KERNEL_IMAGEDEST}/dtb"
14KERNEL_DTBVENDORED = "1" 14KERNEL_DTBVENDORED = "1"
15 15
16SRC_URI += " \ 16SRC_URI:append = " \
17file://0001-lib-build_OID_registry-fix-reproducibility-issues.patch \ 17file://0001-lib-build_OID_registry-fix-reproducibility-issues.patch \
18file://0001-vt-conmakehash-improve-reproducibility.patch \ 18file://0001-vt-conmakehash-improve-reproducibility.patch \
19file://0001-pnmtologo-use-relocatable-file-name.patch \ 19file://0001-pnmtologo-use-relocatable-file-name.patch \