Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / 009_pack_extra.dts
1 /dts-v1/;
2
3 / {
4         #address-cells = <1>;
5         #size-cells = <1>;
6
7         binman {
8                 u-boot {
9                         min-size = <12>;
10                         pad-before = <3>;
11                         pad-after = <5>;
12                 };
13
14                 u-boot-align-size-nop {
15                         type = "u-boot";
16                         align-size = <4>;
17                 };
18
19                 u-boot-align-size {
20                         type = "u-boot";
21                         align = <16>;
22                         align-size = <32>;
23                 };
24
25                 u-boot-align-end {
26                         type = "u-boot";
27                         align-end = <64>;
28                 };
29
30                 u-boot-align-both {
31                         type = "u-boot";
32                         align = <64>;
33                         align-end = <128>;
34                 };
35
36                 u-boot-min-size {
37                         type = "u-boot";
38                         min-size = <24>;
39                         align-size = <16>;
40                 };
41         };
42 };