[U-Boot] [PATCH 038/126] binman: Take account of skip-at-start with image-header

Simon Glass sjg at chromium.org
Wed Sep 25 14:56:22 UTC 2019


The image-header currently sets it offset assuming that skip-at-start is
zero. This does not work on x86 where offsets end at 4GB. Add in this
value so that the offset is correct.

Signed-off-by: Simon Glass <sjg at chromium.org>
---

 tools/binman/etype/image_header.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/binman/etype/image_header.py b/tools/binman/etype/image_header.py
index 4b69eda1a22..b9327dd799b 100644
--- a/tools/binman/etype/image_header.py
+++ b/tools/binman/etype/image_header.py
@@ -100,6 +100,7 @@ class Entry_image_header(Entry):
                     offset = offset
                 else:
                     offset = image_size - IMAGE_HEADER_LEN
+        offset += self.section.GetStartOffset()
         return Entry.Pack(self, offset)
 
     def ProcessContents(self):
-- 
2.23.0.444.g18eeb5a265-goog



More information about the U-Boot mailing list