diff options
author | Simon Glass <sjg@chromium.org> | 2019-09-25 08:56:21 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-10-08 13:57:44 +0800 |
commit | 2d553c006d46653f3e0367cc5bfe36a9c7128eb5 (patch) | |
tree | 9463743d1b2f57b732c579dc93263d1ea9f3985b /tools/binman/image.py | |
parent | 4e185e8dd7aa3ff7618d228ebfaffb507a569c07 (diff) | |
download | u-boot-2d553c006d46653f3e0367cc5bfe36a9c7128eb5.tar.gz |
binman: Handle reading data for end-at-4gb sections
Some x86 sections have special offsets which currently result in empty
data being returned from the 'extract' command. Fix this by taking account
of the skip-at-start property.
Add a little more debugging while we are here.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'tools/binman/image.py')
-rw-r--r-- | tools/binman/image.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/binman/image.py b/tools/binman/image.py index 7b39a1ddce..2beab7fd4d 100644 --- a/tools/binman/image.py +++ b/tools/binman/image.py @@ -201,6 +201,8 @@ class Image(section.Entry_section): return entry def ReadData(self, decomp=True): + tout.Debug("Image '%s' ReadData(), size=%#x" % + (self.GetPath(), len(self._data))) return self._data def GetListEntries(self, entry_paths): |