binman: Allow easy importing of entry modules
authorSimon Glass <sjg@chromium.org>
Mon, 8 Jul 2019 20:25:32 +0000 (14:25 -0600)
committerSimon Glass <sjg@chromium.org>
Wed, 24 Jul 2019 19:54:08 +0000 (12:54 -0700)
commite430440232e455c0b670a3f5647fbab649e34f4b
treef5cbda86979a2fb88edbba8c9761fd56138eb358
parentc073ced7a325b46dab14183af26e4b8bc3c4f3d0
binman: Allow easy importing of entry modules

At present entry modules can only be accessed using Entry.Lookup() or
Entry.Create(). Most of the time this is fine, but sometimes a module
needs to provide constants or helper functions useful to other modules.
It is easier in this case to use 'import'.

Add an __init__ file to permit this.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/binman/entry.py
tools/binman/etype/__init__.py [new file with mode: 0644]
tools/patman/test_util.py