summaryrefslogtreecommitdiff
path: root/tools/binman/entry.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-11-23 21:03:43 +0300
committerSimon Glass <sjg@chromium.org>2021-12-02 19:16:30 +0300
commitc47383114f8cbced067e10035b5b907e87425dd3 (patch)
tree7dcd1f2dc7189514a05693d8783d88c32c5c1e3a /tools/binman/entry.py
parentc475decf59a6460bbd706199d8157f2fd2c4f4fc (diff)
downloadu-boot-c47383114f8cbced067e10035b5b907e87425dd3.tar.xz
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>
Diffstat (limited to 'tools/binman/entry.py')
-rw-r--r--tools/binman/entry.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/entry.py b/tools/binman/entry.py
index 70222718ea..5e66aa4fa5 100644
--- a/tools/binman/entry.py
+++ b/tools/binman/entry.py
@@ -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