diff options
author | Tom Rini <trini@konsulko.com> | 2022-10-29 18:51:22 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-29 18:51:22 -0400 |
commit | 6f02819cceb19c334f1dbd6eccefb4ccfae319f9 (patch) | |
tree | ada26fe279934fbb18d69324010b3ce1f55ffb63 /tools/binman/image.py | |
parent | fb63362c63c7aeacb1dfde330ee8f692da7972f9 (diff) | |
parent | f21954750aa8ed445ab83998bb099e366136c428 (diff) |
Merge tag 'dm-pull-29oct22' of https://source.denx.de/u-boot/custodians/u-boot-dm
Fix pylibfdt warnings and use setuptools to build
Various minor changes to core dm and sandbox
Diffstat (limited to 'tools/binman/image.py')
-rw-r--r-- | tools/binman/image.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/binman/image.py b/tools/binman/image.py index afc4b4d6430..6d4bff58436 100644 --- a/tools/binman/image.py +++ b/tools/binman/image.py @@ -38,6 +38,7 @@ class Image(section.Entry_section): repacked later test_section_timeout: Use a zero timeout for section multi-threading (for testing) + symlink: Name of symlink to image Args: copy_to_orig: Copy offset/size to orig_offset/orig_size after reading @@ -97,6 +98,7 @@ class Image(section.Entry_section): if filename: self._filename = filename self.allow_repack = fdt_util.GetBool(self._node, 'allow-repack') + self._symlink = fdt_util.GetString(self._node, 'symlink') @classmethod def FromFile(cls, fname): @@ -180,6 +182,10 @@ class Image(section.Entry_section): data = self.GetPaddedData() fd.write(data) tout.info("Wrote %#x bytes" % len(data)) + # Create symlink to file if symlink given + if self._symlink is not None: + sname = tools.get_output_filename(self._symlink) + os.symlink(fname, sname) def WriteMap(self): """Write a map of the image to a .map file |