提交 ce774e94 编写于 作者: S Simon Glass

binman: Set a default toolpath

When binman is run from 'make check' it is given a toolpath so that the
latest tools (e.g. mkimage) are used. When run manually with no toolpath,
it relies on the system mkimage. But this may be missing or old.

Make some effort to find the built-from-soruce version by looking in the
current directory and in the builds created by 'make check'.
Signed-off-by: NSimon Glass <sjg@chromium.org>
上级 92dee5fc
......@@ -113,6 +113,11 @@ def RunBinman(args):
if not args.debug:
sys.tracebacklimit = 0
# Provide a default toolpath in the hope of finding a mkimage built from
# current source
if not args.toolpath:
args.toolpath = ['./tools', 'build-sandbox/tools']
if args.cmd == 'test':
if args.test_coverage:
RunTestCoverage(args.toolpath)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册