blob: c800ec39e8784cde8684e5e7fd064e216ff3d59f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/ {
images {
default = "boot";
boot {
description = "Test boot script";
data = /incbin/("sandbox-boot.sh");
type = "script";
compression = "none";
};
outer {
description = "Script testing recursion";
data = /incbin/("sandbox-outer.sh");
type = "script";
compression = "none";
};
inner {
description = "Another test script";
data = /incbin/("sandbox-inner.sh");
type = "script";
compression = "none";
};
};
};
|