Commit 608017026571ea7ac29e5da200efeac71fb42d57

Authored by Peng Fan
Committed by Tom Rini
1 parent 58008cbab5

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

tools/genboardscfg.py
... ... @@ -24,7 +24,7 @@
24 24 import tempfile
25 25 import time
26 26  
27   -sys.path.append(os.path.join(os.path.dirname(__file__), 'buildman'))
  27 +sys.path.insert(1, os.path.join(os.path.dirname(__file__), 'buildman'))
28 28 import kconfiglib
29 29  
30 30 ### constant variables ###