diff options
author | Simon Glass <sjg@chromium.org> | 2019-07-20 12:23:46 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-07-29 09:38:06 -0600 |
commit | c5ad04b72169c40e3646ed5bba28832eed2c5d4f (patch) | |
tree | 73fcbfba65313e721c03cb2256492e22ec66508b /tools/binman/image.py | |
parent | c6bd6e235ac6d6a35e9ad8f3db49db7ba27f7650 (diff) |
binman: Add a function to obtain the image for an Entry
At present we have an 'image' property in the entry for this purpose, but
this is not necessary and seems error-prone in the presence of
inheritance. Add a function instead. The Entry_section class overrides
this with a special version, since top-level sections are in fact images,
since Image inherits Entry_section.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/image.py')
-rw-r--r-- | tools/binman/image.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/binman/image.py b/tools/binman/image.py index 970d33f711..c990818734 100644 --- a/tools/binman/image.py +++ b/tools/binman/image.py @@ -42,7 +42,6 @@ class Image(section.Entry_section): we create a section manually. """ def __init__(self, name, node, test=False): - self.image = self section.Entry_section.__init__(self, None, 'section', node, test) self.name = 'main-section' self.image_name = name |