blob: 3a5bb6d0f7305a86a516727f770c1f589733be23 [file] [log] [blame]
Jan Kiszka30f64652022-02-03 21:43:50 +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 {
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 hash-1 {
18 algo = "sha256";
19 };
20 };
21 fdt-1 {
22 description = "snow";
23 data = /incbin/("sandbox-kernel.dtb");
24 type = "flat_dt";
25 arch = "sandbox";
26 compression = "none";
27 fdt-version = <1>;
28 hash-1 {
29 algo = "sha256";
30 };
31 };
32 };
33 configurations {
34 default = "conf-1";
35 conf-1 {
36 kernel = "kernel";
37 fdt = "fdt-1";
38 signature {
39 key-name-hint = "dev";
40 sign-images = "fdt", "kernel";
41 };
42 };
43 };
44};