diff options
author | Mikko Rapeli <mikko.rapeli@linaro.org> | 2022-09-12 10:32:17 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-09-13 10:36:50 +0100 |
commit | be267f61698d149ed2f65190f362fc556af1f54e (patch) | |
tree | 6b360712b7100f88753cbeac6173665b62e9b1b8 /meta/recipes-bsp | |
parent | 987e1503f733068d774ccf440b6f4e23e833571e (diff) | |
download | poky-be267f61698d149ed2f65190f362fc556af1f54e.tar.gz |
u-boot: switch from append to += in SRC_URI
+= allows custom layers to change the SRC_URI e.g. when
updating the whole recipe to newer u-boot version.
With :append, there is no way to change the variable
from a bbappend.
(From OE-Core rev: be96b384ce964ff14536d3bc40c89851a12dfb60)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp')
-rw-r--r-- | meta/recipes-bsp/u-boot/u-boot_2022.07.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/u-boot/u-boot_2022.07.bb b/meta/recipes-bsp/u-boot/u-boot_2022.07.bb index 0d2464d74b..1ae575790c 100644 --- a/meta/recipes-bsp/u-boot/u-boot_2022.07.bb +++ b/meta/recipes-bsp/u-boot/u-boot_2022.07.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | require u-boot-common.inc | 1 | require u-boot-common.inc |
2 | require u-boot.inc | 2 | require u-boot.inc |
3 | 3 | ||
4 | SRC_URI:append = " file://0001-riscv32-Use-double-float-ABI-for-rv32.patch \ | 4 | SRC_URI += " file://0001-riscv32-Use-double-float-ABI-for-rv32.patch \ |
5 | file://0001-riscv-fix-build-with-binutils-2.38.patch \ | 5 | file://0001-riscv-fix-build-with-binutils-2.38.patch \ |
6 | " | 6 | " |
7 | 7 | ||