blob: e0d27eacc99e931c9aae40ad5bb9d299598b1568 [file] [log] [blame]
Bartlomiej Sieka4bae9092008-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 */
5/ {
6 description = "Automatic U-Boot update";
7 #address-cells = <1>;
8
9 images {
10 update@1 {
11 description = "U-Boot binary";
12 data = /incbin/("./u-boot.bin");
13 compression = "none";
14 type = "firmware";
15 load = <FFFC0000>;
16 hash@1 {
17 algo = "sha1";
18 };
19 };
20 };
21};