]> git.ipfire.org Git - people/ms/u-boot.git/blame - doc/uImage.FIT/update_uboot.its
doc: FIT image: fix incorrect examples of DT node unit address
[people/ms/u-boot.git] / doc / uImage.FIT / update_uboot.its
CommitLineData
4bae9090
BS
1/*
2 * Automatic software update for U-Boot
3 * Make sure the flashing addresses ('load' prop) is correct for your board!
4 */
824d8299
IS
5
6/dts-v1/;
7
4bae9090
BS
8/ {
9 description = "Automatic U-Boot update";
10 #address-cells = <1>;
11
12 images {
b8790ebe 13 update-1 {
4bae9090
BS
14 description = "U-Boot binary";
15 data = /incbin/("./u-boot.bin");
16 compression = "none";
17 type = "firmware";
18 load = <FFFC0000>;
b8790ebe 19 hash-1 {
4bae9090
BS
20 algo = "sha1";
21 };
22 };
23 };
24};