blob: ca7d10fab833904d2f960793a2e88ea683f522c6 [file] [log] [blame]
Simon Glassc44aa612023-06-23 13:22:04 +01001.. SPDX-License-Identifier: GPL-2.0+
2
3Signed Images
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 = "none";
21 load = <0x4>;
22 entry = <0x8>;
23 kernel-version = <1>;
24 signature {
Sean Anderson72a09cc2023-12-02 14:33:14 -050025 algo = "sha256,rsa2048";
Simon Glassc44aa612023-06-23 13:22:04 +010026 key-name-hint = "dev";
27 };
28 };
29 fdt-1 {
30 description = "snow";
31 data = /incbin/("sandbox-kernel.dtb");
32 type = "flat_dt";
33 arch = "sandbox";
34 compression = "none";
35 fdt-version = <1>;
36 signature {
Sean Anderson72a09cc2023-12-02 14:33:14 -050037 algo = "sha256,rsa2048";
Simon Glassc44aa612023-06-23 13:22:04 +010038 key-name-hint = "dev";
39 };
40 };
41 };
42 configurations {
43 default = "conf-1";
44 conf-1 {
45 kernel = "kernel";
46 fdt = "fdt-1";
47 };
48 };
49 };