diff options
author | Simon Glass <sjg@chromium.org> | 2019-05-14 15:53:45 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-07-10 16:52:58 -0600 |
commit | b8f0876f1eccc17a1275401ff7bc846235fd3edd (patch) | |
tree | b1d5769698ce3d303f018b204237d38c17b30349 /tools | |
parent | a92939a4aa65700c3cdfa230fa986d40c508c5e6 (diff) | |
download | u-boot-b8f0876f1eccc17a1275401ff7bc846235fd3edd.tar.gz u-boot-b8f0876f1eccc17a1275401ff7bc846235fd3edd.tar.bz2 u-boot-b8f0876f1eccc17a1275401ff7bc846235fd3edd.zip |
binman: Use binary mode when compressing data
The lz4 utility inserts binary data in its output which cannot always be
converted to unicode (nor should it be). Fix this by using the new binary
mode for program output.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/binman/etype/blob.py | 2 | ||||
-rw-r--r-- | tools/binman/ftest.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/binman/etype/blob.py b/tools/binman/etype/blob.py index ae80bbee53..f56a1f8768 100644 --- a/tools/binman/etype/blob.py +++ b/tools/binman/etype/blob.py @@ -60,7 +60,7 @@ class Entry_blob(Entry): except AttributeError: data = lz4.compress(data) ''' - data = tools.Run('lz4', '-c', self._pathname) + data = tools.Run('lz4', '-c', self._pathname, binary=True) self.SetContents(data) return True diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py index 1111852a40..4d96933cb4 100644 --- a/tools/binman/ftest.py +++ b/tools/binman/ftest.py @@ -1557,7 +1557,7 @@ class TestFunctional(unittest.TestCase): out = os.path.join(self._indir, 'lz4.tmp') with open(out, 'wb') as fd: fd.write(data) - return tools.Run('lz4', '-dc', out) + return tools.Run('lz4', '-dc', out, binary=True) ''' try: orig = lz4.frame.decompress(data) |