blob: c2ac2663e625251b4bfc4e1688aecbf159cd83b4 [file] [log] [blame]
Bartlomiej Siekae273e9f2008-10-01 15:26:31 +02001/*
2 * Automatic software update for U-Boot
3 * Make sure the flashing addresses ('load' prop) is correct for your board!
4 */
Ira W. Snyderd3bdfea2009-11-04 13:37:59 -08005
6/dts-v1/;
7
Bartlomiej Siekae273e9f2008-10-01 15:26:31 +02008/ {
9 description = "Automatic U-Boot update";
10 #address-cells = <1>;
11
12 images {
Andre Przywara9b22b6d2017-12-04 02:05:08 +000013 update-1 {
Bartlomiej Siekae273e9f2008-10-01 15:26:31 +020014 description = "U-Boot binary";
15 data = /incbin/("./u-boot.bin");
16 compression = "none";
17 type = "firmware";
18 load = <FFFC0000>;
Andre Przywara9b22b6d2017-12-04 02:05:08 +000019 hash-1 {
Bartlomiej Siekae273e9f2008-10-01 15:26:31 +020020 algo = "sha1";
21 };
22 };
23 };
24};