Sean Anderson | 8959992 | 2022-12-12 14:12:08 -0500 | [diff] [blame] | 1 | /dts-v1/; |
2 | |||||
3 | / { | ||||
4 | description = "FIT image to test the source command"; | ||||
5 | #address-cells = <1>; | ||||
6 | |||||
7 | images { | ||||
8 | default = "script-1"; | ||||
9 | |||||
10 | script-1 { | ||||
11 | data = "echo 1"; | ||||
12 | type = "script"; | ||||
13 | arch = "sandbox"; | ||||
14 | compression = "none"; | ||||
15 | }; | ||||
16 | |||||
17 | script-2 { | ||||
18 | data = "echo 2"; | ||||
19 | type = "script"; | ||||
20 | arch = "sandbox"; | ||||
21 | compression = "none"; | ||||
22 | }; | ||||
23 | |||||
24 | not-a-script { | ||||
25 | data = "echo 3"; | ||||
26 | type = "kernel"; | ||||
27 | arch = "sandbox"; | ||||
28 | compression = "none"; | ||||
29 | }; | ||||
30 | }; | ||||
31 | |||||
32 | configurations { | ||||
33 | default = "conf-2"; | ||||
34 | |||||
35 | conf-1 { | ||||
36 | script = "script-1"; | ||||
37 | }; | ||||
38 | |||||
39 | conf-2 { | ||||
40 | script = "script-2"; | ||||
41 | }; | ||||
42 | }; | ||||
43 | }; |