blob: 811d008d13da703ff1e5ec4a6798eabe3ffcf3e3 [file] [log] [blame]
Simon Glassc44aa612023-06-23 13:22:04 +01001.. SPDX-License-Identifier: GPL-2.0+
2
3Automatic software update
4=========================
5
6Make sure the flashing addresses ('load' prop) is correct for your board!
7
8::
9
10 /dts-v1/;
11
12 / {
13 description = "Automatic U-Boot update";
14 #address-cells = <1>;
15
16 images {
17 update-1 {
18 description = "U-Boot binary";
19 data = /incbin/("./u-boot.bin");
20 compression = "none";
21 type = "firmware";
22 load = <0xFFFC0000>;
23 hash-1 {
Sean Anderson72a09cc2023-12-02 14:33:14 -050024 algo = "sha256";
Simon Glassc44aa612023-06-23 13:22:04 +010025 };
26 };
27 };
28 };