]> git.ipfire.org Git - people/ms/u-boot.git/blame - doc/uImage.FIT/sign-configs.its
doc: FIT image: fix incorrect examples of DT node unit address
[people/ms/u-boot.git] / doc / uImage.FIT / sign-configs.its
CommitLineData
4d098529
SG
1/dts-v1/;
2
3/ {
4 description = "Chrome OS kernel image with one or more FDT blobs";
5 #address-cells = <1>;
6
7 images {
b8790ebe 8 kernel {
4d098529
SG
9 data = /incbin/("test-kernel.bin");
10 type = "kernel_noload";
11 arch = "sandbox";
12 os = "linux";
13 compression = "lzo";
14 load = <0x4>;
15 entry = <0x8>;
16 kernel-version = <1>;
b8790ebe 17 hash-1 {
4d098529
SG
18 algo = "sha1";
19 };
20 };
b8790ebe 21 fdt-1 {
4d098529
SG
22 description = "snow";
23 data = /incbin/("sandbox-kernel.dtb");
24 type = "flat_dt";
25 arch = "sandbox";
26 compression = "none";
27 fdt-version = <1>;
b8790ebe 28 hash-1 {
4d098529
SG
29 algo = "sha1";
30 };
31 };
32 };
33 configurations {
b8790ebe
AP
34 default = "conf-1";
35 conf-1 {
36 kernel = "kernel";
37 fdt = "fdt-1";
38 signature {
4d098529
SG
39 algo = "sha1,rsa2048";
40 key-name-hint = "dev";
41 sign-images = "fdt", "kernel";
42 };
43 };
44 };
45};