diff options
author | Tom Rini <trini@konsulko.com> | 2017-11-23 22:48:35 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-11-23 22:48:35 -0500 |
commit | bb7ab1ccfec9aa4e2df3e8eb49ca85f6c0c65560 (patch) | |
tree | 7cf3d11a538ce834689ed3749db66b2f99543443 /tools/binman/image.py | |
parent | d9d76023ea0d567b0630e85d1bef67b5b1a788d3 (diff) | |
parent | 9677faa34ee81c7abb4c08b0dc4ce4aace5473fc (diff) |
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'tools/binman/image.py')
-rw-r--r-- | tools/binman/image.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/binman/image.py b/tools/binman/image.py index 07fc930665..24c4f6f578 100644 --- a/tools/binman/image.py +++ b/tools/binman/image.py @@ -9,8 +9,6 @@ from collections import OrderedDict from operator import attrgetter -import entry -from entry import Entry import fdt_util import tools @@ -48,6 +46,11 @@ class Image: _entries: OrderedDict() of entries """ def __init__(self, name, node): + global entry + global Entry + import entry + from entry import Entry + self._node = node self._name = name self._size = None |