summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-10-19 17:33:32 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-27 09:46:41 +0100
commit6f1f697aa19b6fef1b660ce067599863a17f0724 (patch)
treec31c2c063f4423e984d919f2e69fdfc1cc5878b4 /meta/recipes-bsp
parent4c00dab038c6232f0a6eaca950ec09961f71c605 (diff)
downloadpoky-6f1f697aa19b6fef1b660ce067599863a17f0724.tar.gz
u-boot: upgrade 2021.07 -> 2021.10
(From OE-Core rev: 24a4b34e25548d71bd430224adb58d87015674a7) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp')
-rw-r--r--meta/recipes-bsp/u-boot/files/0001-tools-image-host-fix-wrong-return-value.patch41
-rw-r--r--meta/recipes-bsp/u-boot/u-boot-common.inc2
-rw-r--r--meta/recipes-bsp/u-boot/u-boot-tools_2021.07.bb4
-rw-r--r--meta/recipes-bsp/u-boot/u-boot-tools_2021.10.bb2
-rw-r--r--meta/recipes-bsp/u-boot/u-boot_2021.10.bb (renamed from meta/recipes-bsp/u-boot/u-boot_2021.07.bb)1
5 files changed, 4 insertions, 46 deletions
diff --git a/meta/recipes-bsp/u-boot/files/0001-tools-image-host-fix-wrong-return-value.patch b/meta/recipes-bsp/u-boot/files/0001-tools-image-host-fix-wrong-return-value.patch
deleted file mode 100644
index 81687203e4..0000000000
--- a/meta/recipes-bsp/u-boot/files/0001-tools-image-host-fix-wrong-return-value.patch
+++ /dev/null
@@ -1,41 +0,0 @@
1From 77fe3ad2ab2953ccdf6e9417cbecc060b45d3e55 Mon Sep 17 00:00:00 2001
2From: Ming Liu <liu.ming50@gmail.com>
3Date: Sun, 30 May 2021 10:32:08 +0200
4Subject: [PATCH] tools: image-host: fix wrong return value
5
6The return value '-ENOSPC' of fit_set_timestamp function does not match
7the caller fit_image_write_sig's expection which is '-FDT_ERR_NOSPACE'.
8
9Fix it by not calling fit_set_timestamp, but call fdt_setprop instead.
10
11This fixes a following mkimage error:
12| Can't write signature for 'signature@1' signature node in
13| 'conf@imx6ull-colibri-wifi-eval-v3.dtb' conf node: <unknown error>
14| mkimage Can't add hashes to FIT blob: -1
15
16Upstream-Status: Submitted [ https://patchwork.ozlabs.org/project/uboot/patch/20210531070451.6561-1-liu.ming50@gmail.com ]
17
18Signed-off-by: Ming Liu <liu.ming50@gmail.com>
19---
20 tools/image-host.c | 4 +++-
21 1 file changed, 3 insertions(+), 1 deletion(-)
22
23diff --git a/tools/image-host.c b/tools/image-host.c
24index 270d36fe45..73095461a7 100644
25--- a/tools/image-host.c
26+++ b/tools/image-host.c
27@@ -132,8 +132,10 @@ static int fit_image_write_sig(void *fit, int noffset, uint8_t *value,
28 if (!ret) {
29 time_t timestamp = imagetool_get_source_date(cmdname,
30 time(NULL));
31+ uint32_t t = cpu_to_uimage(timestamp);
32
33- ret = fit_set_timestamp(fit, noffset, timestamp);
34+ ret = fdt_setprop(fit, noffset, FIT_TIMESTAMP_PROP, &t,
35+ sizeof(uint32_t));
36 }
37 if (region_prop && !ret) {
38 uint32_t strdata[2];
39--
402.29.0
41
diff --git a/meta/recipes-bsp/u-boot/u-boot-common.inc b/meta/recipes-bsp/u-boot/u-boot-common.inc
index 6b9253806f..e41a4b5096 100644
--- a/meta/recipes-bsp/u-boot/u-boot-common.inc
+++ b/meta/recipes-bsp/u-boot/u-boot-common.inc
@@ -12,7 +12,7 @@ PE = "1"
12 12
13# We use the revision in order to avoid having to fetch it from the 13# We use the revision in order to avoid having to fetch it from the
14# repo during parse 14# repo during parse
15SRCREV = "840658b093976390e9537724f802281c9c8439f5" 15SRCREV = "d80bb749fab53da72c4a0e09b8c2d2aaa3103c91"
16 16
17SRC_URI = "git://git.denx.de/u-boot.git \ 17SRC_URI = "git://git.denx.de/u-boot.git \
18 " 18 "
diff --git a/meta/recipes-bsp/u-boot/u-boot-tools_2021.07.bb b/meta/recipes-bsp/u-boot/u-boot-tools_2021.07.bb
deleted file mode 100644
index d0c0f30a98..0000000000
--- a/meta/recipes-bsp/u-boot/u-boot-tools_2021.07.bb
+++ /dev/null
@@ -1,4 +0,0 @@
1require u-boot-common.inc
2require u-boot-tools.inc
3
4SRC_URI:append = " file://0001-tools-image-host-fix-wrong-return-value.patch"
diff --git a/meta/recipes-bsp/u-boot/u-boot-tools_2021.10.bb b/meta/recipes-bsp/u-boot/u-boot-tools_2021.10.bb
new file mode 100644
index 0000000000..7eaf721ca8
--- /dev/null
+++ b/meta/recipes-bsp/u-boot/u-boot-tools_2021.10.bb
@@ -0,0 +1,2 @@
1require u-boot-common.inc
2require u-boot-tools.inc
diff --git a/meta/recipes-bsp/u-boot/u-boot_2021.07.bb b/meta/recipes-bsp/u-boot/u-boot_2021.10.bb
index c8dbe477e0..617827ff08 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2021.07.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2021.10.bb
@@ -4,3 +4,4 @@ require u-boot.inc
4SRC_URI:append = " file://0001-riscv32-Use-double-float-ABI-for-rv32.patch" 4SRC_URI:append = " file://0001-riscv32-Use-double-float-ABI-for-rv32.patch"
5 5
6DEPENDS += "bc-native dtc-native python3-setuptools-native" 6DEPENDS += "bc-native dtc-native python3-setuptools-native"
7