xref: /rk3399_rockchip-uboot/doc/uImage.FIT/update_uboot.its (revision 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a)
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};
22