diff options
Diffstat (limited to 'tools/binman/test/008_pack.dts')
-rw-r--r-- | tools/binman/test/008_pack.dts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/binman/test/008_pack.dts b/tools/binman/test/008_pack.dts new file mode 100644 index 0000000000..a88785d835 --- /dev/null +++ b/tools/binman/test/008_pack.dts @@ -0,0 +1,30 @@ +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + u-boot { + }; + + u-boot-align { + type = "u-boot"; + align = <16>; + }; + + u-boot-size { + type = "u-boot"; + size = <23>; + }; + + u-boot-next { + type = "u-boot"; + }; + + u-boot-fixed { + type = "u-boot"; + offset = <61>; + }; + }; +}; |