blob: 9e992c198826a65eba7e9004f7f8b57786c502f2 [file] [log] [blame]
Simon Glass4d098522013-06-13 15:10:09 -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 Glass4d098522013-06-13 15:10:09 -07009 data = /incbin/("test-kernel.bin");
10 type = "kernel_noload";
11 arch = "sandbox";
12 os = "linux";
13 compression = "lzo";
14 load = <0x4>;
15 entry = <0x8>;
16 kernel-version = <1>;
Andre Przywarab8790eb2017-12-04 02:05:08 +000017 hash-1 {
Simon Glass4d098522013-06-13 15:10:09 -070018 algo = "sha1";
19 };
20 };
Andre Przywarab8790eb2017-12-04 02:05:08 +000021 fdt-1 {
Simon Glass4d098522013-06-13 15:10:09 -070022 description = "snow";
23 data = /incbin/("sandbox-kernel.dtb");
24 type = "flat_dt";
25 arch = "sandbox";
26 compression = "none";
27 fdt-version = <1>;
Andre Przywarab8790eb2017-12-04 02:05:08 +000028 hash-1 {
Simon Glass4d098522013-06-13 15:10:09 -070029 algo = "sha1";
30 };
31 };
32 };
33 configurations {
Andre Przywarab8790eb2017-12-04 02:05:08 +000034 default = "conf-1";
35 conf-1 {
36 kernel = "kernel";
37 fdt = "fdt-1";
38 signature {
Simon Glass4d098522013-06-13 15:10:09 -070039 algo = "sha1,rsa2048";
40 key-name-hint = "dev";
41 sign-images = "fdt", "kernel";
42 };
43 };
44 };
45};