blob: 6d98d44430cfe20d72109ce2d50602c27dd737c7 [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 {
Sean Anderson72a09cc2023-12-02 14:33:14 -050025 algo = "sha256";
Simon Glassc44aa612023-06-23 13:22:04 +010026 };
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 {
Sean Anderson72a09cc2023-12-02 14:33:14 -050036 algo = "sha256";
Simon Glassc44aa612023-06-23 13:22:04 +010037 };
38 };
39 };
40 configurations {
41 default = "conf-1";
42 conf-1 {
43 kernel = "kernel";
44 fdt = "fdt-1";
45 signature {
Sean Anderson72a09cc2023-12-02 14:33:14 -050046 algo = "sha256,rsa2048";
Simon Glassc44aa612023-06-23 13:22:04 +010047 key-name-hint = "dev";
48 sign-images = "fdt", "kernel";
49 };
50 };
51 };
52 };