blob: 18c759e9e65cbb67185a1d76d7568972f040be19 [file] [log] [blame]
Simon Glass56518e72013-06-13 15:10:01 -07001/dts-v1/;
2
3/ {
4 description = "Chrome OS kernel image with one or more FDT blobs";
5 #address-cells = <1>;
6
7 images {
Andre Przywarab8790eb2017-12-04 02:05:08 +00008 kernel {
Simon Glass56518e72013-06-13 15:10:01 -07009 data = /incbin/("test-kernel.bin");
10 type = "kernel_noload";
11 arch = "sandbox";
12 os = "linux";
13 compression = "none";
14 load = <0x4>;
15 entry = <0x8>;
16 kernel-version = <1>;
Andre Przywarab8790eb2017-12-04 02:05:08 +000017 signature {
Simon Glass56518e72013-06-13 15:10:01 -070018 algo = "sha1,rsa2048";
19 key-name-hint = "dev";
20 };
21 };
Andre Przywarab8790eb2017-12-04 02:05:08 +000022 fdt-1 {
Simon Glass56518e72013-06-13 15:10:01 -070023 description = "snow";
24 data = /incbin/("sandbox-kernel.dtb");
25 type = "flat_dt";
26 arch = "sandbox";
27 compression = "none";
28 fdt-version = <1>;
Andre Przywarab8790eb2017-12-04 02:05:08 +000029 signature {
Simon Glass56518e72013-06-13 15:10:01 -070030 algo = "sha1,rsa2048";
31 key-name-hint = "dev";
32 };
33 };
34 };
35 configurations {
Andre Przywarab8790eb2017-12-04 02:05:08 +000036 default = "conf-1";
37 conf-1 {
38 kernel = "kernel";
39 fdt = "fdt-1";
Simon Glass56518e72013-06-13 15:10:01 -070040 };
41 };
42};