blob: d19c4d7745a718182999088341d5e5c3f1604688 [file] [log] [blame]
Philippe Reynese246b722018-11-14 13:51:04 +01001/dts-v1/;
2
3/ {
4 description = "Chrome OS kernel image with one or more FDT blobs";
5 #address-cells = <1>;
6
7 images {
8 kernel@1 {
9 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>;
17 signature@1 {
18 algo = "sha1,rsa2048";
19 padding = "pss";
20 key-name-hint = "dev";
21 };
22 };
23 fdt@1 {
24 description = "snow";
25 data = /incbin/("sandbox-kernel.dtb");
26 type = "flat_dt";
27 arch = "sandbox";
28 compression = "none";
29 fdt-version = <1>;
30 signature@1 {
31 algo = "sha1,rsa2048";
32 padding = "pss";
33 key-name-hint = "dev";
34 };
35 };
36 };
37 configurations {
38 default = "conf@1";
39 conf@1 {
40 kernel = "kernel@1";
41 fdt = "fdt@1";
42 };
43 };
44};