1/*
2 * Example Automatic software update file.
3 */
4
5/dts-v1/;
6
7/ {
8	description = "Automatic software updates: kernel, ramdisk, FDT";
9	#address-cells = <1>;
10
11	images {
12		update-1 {
13			description = "Linux kernel binary";
14			data = /incbin/("./vmlinux.bin.gz");
15			compression = "none";
16			type = "firmware";
17			load = <FF700000>;
18			hash-1 {
19				algo = "sha1";
20			};
21		};
22		update-2 {
23			description = "Ramdisk image";
24			data = /incbin/("./ramdisk_image.gz");
25			compression = "none";
26			type = "firmware";
27			load = <FF8E0000>;
28			hash-1 {
29				algo = "sha1";
30			};
31		};
32
33		update-3 {
34			description = "FDT blob";
35			data = /incbin/("./blob.fdt");
36			compression = "none";
37			type = "firmware";
38			load = <FFAC0000>;
39			hash-1 {
40				algo = "sha1";
41			};
42		};
43	};
44};
45