blob: a9288ee63679457f31b49340d6337699fba38d52 [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 {
24 algo = "sha1";
25 };
26 };
27 };
28 };