Re: [PATCH 1/6] binman: Put compressed data into separate files

2021-07-21 Thread Simon Glass
At present compression uses the same temporary file for all invocations. With multithreading this causes the data to become corrupted. Use a different filename each time. Signed-off-by: Simon Glass --- tools/patman/tools.py | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) Applied

[PATCH 1/6] binman: Put compressed data into separate files

2021-07-06 Thread Simon Glass
At present compression uses the same temporary file for all invocations. With multithreading this causes the data to become corrupted. Use a different filename each time. Signed-off-by: Simon Glass --- tools/patman/tools.py | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --