mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
binman: Correct init of entry in Entry class
This should not have an underscore. Drop it so that derived classes can rely on it being set correctly. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
c475decf59
commit
c47383114f
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class Entry(object):
|
|||
self.pad_after = 0
|
||||
self.offset_unset = False
|
||||
self.image_pos = None
|
||||
self._expand_size = False
|
||||
self.expand_size = False
|
||||
self.compress = 'none'
|
||||
self.missing = False
|
||||
self.external = False
|
||||
|
|
Loading…
Reference in a new issue