blob: be1a9a653c7f9a82f9c0c0f545fbd095cd471217 [file] [log] [blame]
Jamin Lin2a4b0d52022-01-19 16:23:21 +08001/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 signature {
18 algo = "sha384,rsa3072";
19 key-name-hint = "dev";
20 };
21 };
22 fdt-1 {
23 description = "snow";
24 data = /incbin/("sandbox-kernel.dtb");
25 type = "flat_dt";
26 arch = "sandbox";
27 compression = "none";
28 fdt-version = <1>;
29 signature {
30 algo = "sha384,rsa3072";
31 key-name-hint = "dev";
32 };
33 };
34 };
35 configurations {
36 default = "conf-1";
37 conf-1 {
38 kernel = "kernel";
39 fdt = "fdt-1";
40 };
41 };
42};