binman: Add a test for nested and aligned sections
[oweals/u-boot.git] / tools / binman / test / 131_pack_align_section.dts
1 /dts-v1/;
2
3 / {
4         #address-cells = <1>;
5         #size-cells = <1>;
6
7         binman {
8                 u-boot {
9                 };
10                 section0 {
11                         type = "section";
12                         align = <0x10>;
13                         u-boot {
14                         };
15                 };
16                 section1 {
17                         type = "section";
18                         align-size = <0x20>;
19                         u-boot {
20                         };
21                         section2 {
22                                 type = "section";
23                                 u-boot {
24                                 };
25                         };
26                 };
27         };
28 };