[U-Boot] [PATCH 16/25] binman: Set the pathname correctly for ELF files
Simon Glass
sjg at chromium.org
Tue Nov 6 22:21:33 UTC 2018
At present, stripped files don't have the right pathname which means that
blob compression cannot be used. Fix this.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
tools/binman/etype/u_boot_elf.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/tools/binman/etype/u_boot_elf.py b/tools/binman/etype/u_boot_elf.py
index 134b6cc15b4..f83860dc0a8 100644
--- a/tools/binman/etype/u_boot_elf.py
+++ b/tools/binman/etype/u_boot_elf.py
@@ -30,9 +30,8 @@ class Entry_u_boot_elf(Entry_blob):
out_fname = tools.GetOutputFilename('%s.stripped' % uniq)
tools.WriteFile(out_fname, tools.ReadFile(self._pathname))
tools.Run('strip', out_fname)
- self.SetContents(tools.ReadFile(out_fname))
- else:
- self.SetContents(tools.ReadFile(self._pathname))
+ self._pathname = out_fname
+ Entry_blob.ReadBlobContents(self)
return True
def GetDefaultFilename(self):
--
2.19.1.930.g4563a0d9d0-goog
More information about the U-Boot
mailing list