Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
2 | |||||
3 | /dts-v1/; | ||||
4 | |||||
5 | / { | ||||
6 | description = "Chrome OS kernel image with one or more FDT blobs"; | ||||
7 | #address-cells = <1>; | ||||
8 | |||||
9 | images { | ||||
10 | kernel { | ||||
11 | data = /incbin/("test-kernel.bin"); | ||||
12 | type = "kernel_noload"; | ||||
13 | arch = "sandbox"; | ||||
14 | os = "linux"; | ||||
15 | compression = "none"; | ||||
16 | load = <0x4>; | ||||
17 | entry = <0x8>; | ||||
18 | kernel-version = <1>; | ||||
19 | }; | ||||
20 | fdt-1 { | ||||
21 | description = "snow"; | ||||
22 | data = /incbin/("sandbox-kernel.dtb"); | ||||
23 | type = "flat_dt"; | ||||
24 | arch = "sandbox"; | ||||
25 | compression = "none"; | ||||
26 | fdt-version = <1>; | ||||
27 | }; | ||||
28 | }; | ||||
29 | configurations { | ||||
30 | default = "conf-1"; | ||||
31 | conf-1 { | ||||
32 | kernel = "kernel"; | ||||
33 | fdt = "fdt-1"; | ||||
34 | }; | ||||
35 | }; | ||||
36 | }; |