diff options
Diffstat (limited to 'roms/u-boot/tools/binman/test/008_pack.dts')
-rw-r--r-- | roms/u-boot/tools/binman/test/008_pack.dts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/roms/u-boot/tools/binman/test/008_pack.dts b/roms/u-boot/tools/binman/test/008_pack.dts new file mode 100644 index 000000000..a88785d83 --- /dev/null +++ b/roms/u-boot/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>; + }; + }; +}; |