diff options
author | Peng Fan <peng.fan@nxp.com> | 2018-07-24 14:27:18 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-07-30 07:18:49 -0400 |
commit | 608017026571ea7ac29e5da200efeac71fb42d57 (patch) | |
tree | b3bdae1be00cc3e6c933ba3b2cfea7e2968b378c /tools | |
parent | 58008cbab55688a986e40b644b9142f072285819 (diff) | |
download | u-boot-608017026571ea7ac29e5da200efeac71fb42d57.tar.gz |
tools: genboardscfg: move buildman path to first
To system which has kconfiglib installed, genboardscfg will
use system kconfiglib, we need it use U-Boot owned version,
so move the buildman path to first.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/genboardscfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genboardscfg.py b/tools/genboardscfg.py index 0648472af0..e9bbd15e15 100755 --- a/tools/genboardscfg.py +++ b/tools/genboardscfg.py @@ -24,7 +24,7 @@ import sys import tempfile import time -sys.path.append(os.path.join(os.path.dirname(__file__), 'buildman')) +sys.path.insert(1, os.path.join(os.path.dirname(__file__), 'buildman')) import kconfiglib ### constant variables ### |