From: Peng Fan Date: Tue, 24 Jul 2018 06:27:18 +0000 (+0800) Subject: tools: genboardscfg: move buildman path to first X-Git-Tag: v2025.01-rc5-pxa1908~3841 X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-logo.png?a=commitdiff_plain;h=608017026571ea7ac29e5da200efeac71fb42d57;p=u-boot.git 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 Cc: Masahiro Yamada Cc: Simon Glass Cc: Tom Rini Acked-by: Masahiro Yamada Reviewed-by: Simon Glass --- 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 ###