diff options
| author | Neha Malcom Francis <[email protected]> | 2022-10-17 16:36:25 +0530 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2022-10-29 07:36:33 -0600 |
| commit | 3545e8595c944c893bc3fa64c8e4727c928cf892 (patch) | |
| tree | 84e023add2df4f8b3d276bd5f95d251896de13e2 /tools/binman/test | |
| parent | f29f98d1e40e6b4d9c723af503b20948aa482bf2 (diff) | |
binman: Add support for symlinking images
Adding support to symlink an image packaged using binman.
Signed-off-by: Neha Malcom Francis <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'tools/binman/test')
| -rw-r--r-- | tools/binman/test/259_symlink.dts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/binman/test/259_symlink.dts b/tools/binman/test/259_symlink.dts new file mode 100644 index 00000000000..2ee1f7f05e2 --- /dev/null +++ b/tools/binman/test/259_symlink.dts @@ -0,0 +1,16 @@ +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + multiple-images; + test_image { + filename = "test_image.bin"; + symlink = "symlink_to_test.bin"; + u-boot { + }; + }; + }; +}; |
