aboutsummaryrefslogtreecommitdiff
path: root/tools/binman/test/198_collection.dts
blob: 484a1b0050d6b5193d890b3bdcca96716f9e2c27 (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
25
26
27
// SPDX-License-Identifier: GPL-2.0+

/dts-v1/;

/ {
	#address-cells = <1>;
	#size-cells = <1>;

	binman {
		collection {
			content = <&u_boot_nodtb &dtb>;
		};
		fill {
			size = <2>;
			fill-byte = [ff];
		};
		u_boot_nodtb: u-boot-nodtb {
		};
		fill2 {
			type = "fill";
			size = <3>;
			fill-byte = [fe];
		};
		dtb: u-boot-dtb {
		};
	};
};