summaryrefslogtreecommitdiff
path: root/tools/binman/test/199_collection_section.dts
blob: 03a73194c3f4bd0580bcd9d319ac9034c3fe33a4 (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
28
29
30
31
32
// SPDX-License-Identifier: GPL-2.0+

/dts-v1/;

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

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