From: Simon Glass Date: Tue, 6 Nov 2018 22:21:33 +0000 (-0700) Subject: binman: Set the pathname correctly for ELF files X-Git-Tag: v2019.01-rc1~28^2~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4b6dbaa3073adb24f8c67f89d0f70dbcf00808b9;p=oweals%2Fu-boot.git binman: Set the pathname correctly for ELF files 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 --- diff --git a/tools/binman/etype/u_boot_elf.py b/tools/binman/etype/u_boot_elf.py index 134b6cc15b..f83860dc0a 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):