blob: 6a3df8f2c5b4c095cd5f5b460f9e1eafbd5471f8 [file] [log] [blame]
Simon Glassc44aa612023-06-23 13:22:04 +01001.. SPDX-License-Identifier: GPL-2.0+
2
3Signed configurations
4=====================
5
6::
7
8 /dts-v1/;
9
10 / {
11 description = "Chrome OS kernel image with one or more FDT blobs";
12 #address-cells = <1>;
13
14 images {
15 kernel {
16 data = /incbin/("test-kernel.bin");
17 type = "kernel_noload";
18 arch = "sandbox";
19 os = "linux";
20 compression = "lzo";
21 load = <0x4>;
22 entry = <0x8>;
23 kernel-version = <1>;
24 hash-1 {
25 algo = "sha1";
26 };
27 };
28 fdt-1 {
29 description = "snow";
30 data = /incbin/("sandbox-kernel.dtb");
31 type = "flat_dt";
32 arch = "sandbox";
33 compression = "none";
34 fdt-version = <1>;
35 hash-1 {
36 algo = "sha1";
37 };
38 };
39 };
40 configurations {
41 default = "conf-1";
42 conf-1 {
43 kernel = "kernel";
44 fdt = "fdt-1";
45 signature {
46 algo = "sha1,rsa2048";
47 key-name-hint = "dev";
48 sign-images = "fdt", "kernel";
49 };
50 };
51 };
52 };