Alexandru Gagniuc | 16521e7 | 2021-09-15 14:33:01 -0500 | [diff] [blame] | 1 | /dts-v1/; |
2 | |||||
3 | / { | ||||
4 | description = "Chrome OS kernel image with one or more FDT blobs"; | ||||
5 | #address-cells = <1>; | ||||
6 | |||||
7 | images { | ||||
8 | kernel { | ||||
9 | data = /incbin/("test-kernel.bin"); | ||||
10 | type = "kernel_noload"; | ||||
11 | arch = "sandbox"; | ||||
12 | os = "linux"; | ||||
13 | compression = "none"; | ||||
14 | load = <0x4>; | ||||
15 | entry = <0x8>; | ||||
16 | kernel-version = <1>; | ||||
17 | hash-0 { | ||||
18 | algo = "crc16-ccitt"; | ||||
19 | }; | ||||
20 | hash-1 { | ||||
21 | algo = "crc32"; | ||||
22 | }; | ||||
23 | hash-2 { | ||||
24 | algo = "md5"; | ||||
25 | }; | ||||
26 | hash-3 { | ||||
27 | algo = "sha1"; | ||||
28 | }; | ||||
29 | hash-4 { | ||||
30 | algo = "sha256"; | ||||
31 | }; | ||||
32 | hash-5 { | ||||
33 | algo = "sha384"; | ||||
34 | }; | ||||
35 | hash-6 { | ||||
36 | algo = "sha512"; | ||||
37 | }; | ||||
38 | }; | ||||
39 | fdt-1 { | ||||
40 | description = "snow"; | ||||
41 | data = /incbin/("sandbox-kernel.dtb"); | ||||
42 | type = "flat_dt"; | ||||
43 | arch = "sandbox"; | ||||
44 | compression = "none"; | ||||
45 | fdt-version = <1>; | ||||
46 | hash-0 { | ||||
47 | algo = "crc16-ccitt"; | ||||
48 | }; | ||||
49 | hash-1 { | ||||
50 | algo = "crc32"; | ||||
51 | }; | ||||
52 | hash-2 { | ||||
53 | algo = "md5"; | ||||
54 | }; | ||||
55 | hash-3 { | ||||
56 | algo = "sha1"; | ||||
57 | }; | ||||
58 | hash-4 { | ||||
59 | algo = "sha256"; | ||||
60 | }; | ||||
61 | hash-5 { | ||||
62 | algo = "sha384"; | ||||
63 | }; | ||||
64 | hash-6 { | ||||
65 | algo = "sha512"; | ||||
66 | }; | ||||
67 | }; | ||||
68 | }; | ||||
69 | configurations { | ||||
70 | default = "conf-1"; | ||||
71 | conf-1 { | ||||
72 | kernel = "kernel"; | ||||
73 | fdt = "fdt-1"; | ||||
74 | }; | ||||
75 | }; | ||||
76 | }; |