aboutsummaryrefslogtreecommitdiff
path: root/tools/binman/binman.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2018-06-01 09:38:15 -0600
committerSimon Glass <sjg@chromium.org>2018-06-07 11:25:08 -0800
commitbadf0ec6e4c89d8ee54b96f943057efe3c253113 (patch)
tree219e6f74fd9fc7f76c798ac12069100c24be7d5b /tools/binman/binman.py
parent25ac0e61fe5612d28cbc98654fb325d762f4411b (diff)
downloadu-boot-badf0ec6e4c89d8ee54b96f943057efe3c253113.zip
u-boot-badf0ec6e4c89d8ee54b96f943057efe3c253113.tar.gz
u-boot-badf0ec6e4c89d8ee54b96f943057efe3c253113.tar.bz2
binman: Avoid setting sys.path globally
At present we set the Python path at the start of binman so we can read modules in the 'etype' directory. This is a bit messy since it affects 'import' statements through binman. Adjust the code to set the path locally, just where it is needed. Move the 'entry' module in with the other base modules to help with this. It makes more sense here anyway since it does not implement an entry type. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/binman.py')
-rwxr-xr-xtools/binman/binman.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/binman/binman.py b/tools/binman/binman.py
index fa2f551..d49402a 100755
--- a/tools/binman/binman.py
+++ b/tools/binman/binman.py
@@ -23,9 +23,6 @@ for dirname in ['../patman', '../dtoc', '..']:
# Bring in the libfdt module
sys.path.insert(0, 'scripts/dtc/pylibfdt')
-# Also allow entry-type modules to be brought in from the etype directory.
-sys.path.insert(0, os.path.join(our_path, 'etype'))
-
import cmdline
import command
import control