aboutsummaryrefslogtreecommitdiff
path: root/tools/binman/test/131_pack_align_section.dts
blob: 44478855b0921b080daa22baa66310d104d5659a (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
/dts-v1/;

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

	binman {
		u-boot {
		};
		section0 {
			type = "section";
			align = <0x10>;
			u-boot {
			};
		};
		section1 {
			type = "section";
			align-size = <0x20>;
			u-boot {
			};
			section2 {
				type = "section";
				u-boot {
				};
			};
		};
	};
};