blob: 7bdcc7e286fb8606e3dc93bfd4a065487c1ec959 [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 {
Philippe Reynesed470972018-11-14 13:51:05 +01008 kernel {
Philippe Reynese246b722018-11-14 13:51:04 +01009 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>;
Philippe Reynesed470972018-11-14 13:51:05 +010017 hash-1 {
Philippe Reynese246b722018-11-14 13:51:04 +010018 algo = "sha256";
19 };
20 };
Philippe Reynesed470972018-11-14 13:51:05 +010021 fdt-1 {
Philippe Reynese246b722018-11-14 13:51:04 +010022 description = "snow";
23 data = /incbin/("sandbox-kernel.dtb");
24 type = "flat_dt";
25 arch = "sandbox";
26 compression = "none";
27 fdt-version = <1>;
Philippe Reynesed470972018-11-14 13:51:05 +010028 hash-1 {
Philippe Reynese246b722018-11-14 13:51:04 +010029 algo = "sha256";
30 };
31 };
32 };
33 configurations {
Philippe Reynesed470972018-11-14 13:51:05 +010034 default = "conf-1";
35 conf-1 {
36 kernel = "kernel";
37 fdt = "fdt-1";
38 signature {
Philippe Reynese246b722018-11-14 13:51:04 +010039 algo = "sha256,rsa2048";
40 padding = "pss";
41 key-name-hint = "dev";
42 sign-images = "fdt", "kernel";
43 };
44 };
45 };
46};