mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
binman: Allow zero-size sections
At present if there is only a zero-size entry in a section this is reported as an error, e.g.: Offset 0x0 (0) is outside the section starting at 0x0 (0) Adjust the logic in CheckEntries() to avoid this. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
83d73c2f7c
commit
b4e1a38c29
1 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ class Section(object):
|
|||
for entry in self._entries.values():
|
||||
entry.CheckOffset()
|
||||
if (entry.offset < self._skip_at_start or
|
||||
entry.offset >= self._skip_at_start + self._size):
|
||||
entry.offset + entry.size > self._skip_at_start + self._size):
|
||||
entry.Raise("Offset %#x (%d) is outside the section starting "
|
||||
"at %#x (%d)" %
|
||||
(entry.offset, entry.offset, self._skip_at_start,
|
||||
|
|
Loading…
Reference in a new issue