diff options
Diffstat (limited to 'roms/u-boot/tools/binman/test/022_image_name.dts')
-rw-r--r-- | roms/u-boot/tools/binman/test/022_image_name.dts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/roms/u-boot/tools/binman/test/022_image_name.dts b/roms/u-boot/tools/binman/test/022_image_name.dts new file mode 100644 index 000000000..94fc069c1 --- /dev/null +++ b/roms/u-boot/tools/binman/test/022_image_name.dts @@ -0,0 +1,21 @@ +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + multiple-images; + image1 { + filename = "test-name"; + u-boot { + }; + }; + + image2 { + filename = "test-name.xx"; + u-boot { + }; + }; + }; +}; |