Simon Glass | c44aa61 | 2023-06-23 13:22:04 +0100 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ |
2 | |||||
3 | Signed 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 { | ||||
25 | algo = "sha1,rsa2048"; | ||||
26 | 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 { | ||||
37 | algo = "sha1,rsa2048"; | ||||
38 | 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 | }; |