]> git.ipfire.org Git - people/ms/u-boot.git/blame - doc/uImage.FIT/update3.its
doc: FIT image: fix incorrect examples of DT node unit address
[people/ms/u-boot.git] / doc / uImage.FIT / update3.its
CommitLineData
4bae9090
BS
1/*
2 * Example Automatic software update file.
3 */
824d8299
IS
4
5/dts-v1/;
6
4bae9090
BS
7/ {
8 description = "Automatic software updates: kernel, ramdisk, FDT";
9 #address-cells = <1>;
10
11 images {
b8790ebe 12 update-1 {
4bae9090
BS
13 description = "Linux kernel binary";
14 data = /incbin/("./vmlinux.bin.gz");
15 compression = "none";
16 type = "firmware";
17 load = <FF700000>;
b8790ebe 18 hash-1 {
4bae9090
BS
19 algo = "sha1";
20 };
21 };
b8790ebe 22 update-2 {
4bae9090
BS
23 description = "Ramdisk image";
24 data = /incbin/("./ramdisk_image.gz");
25 compression = "none";
26 type = "firmware";
27 load = <FF8E0000>;
b8790ebe 28 hash-1 {
4bae9090
BS
29 algo = "sha1";
30 };
31 };
32
b8790ebe 33 update-3 {
4bae9090
BS
34 description = "FDT blob";
35 data = /incbin/("./blob.fdt");
36 compression = "none";
37 type = "firmware";
38 load = <FFAC0000>;
b8790ebe 39 hash-1 {
4bae9090
BS
40 algo = "sha1";
41 };
42 };
43 };
44};