]> git.sur5r.net Git - u-boot/blob - doc/uImage.FIT/update_uboot.its
arm nomadik: rename board to nhk8815
[u-boot] / doc / uImage.FIT / update_uboot.its
1 /*
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 };