Skip to content
Snippets Groups Projects
Commit 6a3fc91e authored by Simon Glass's avatar Simon Glass
Browse files

buildman: Ask genboardscfg to be quiet


Now that this tool has a 'quiet' flag, use it.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 69bbdd11
No related branches found
No related tags found
No related merge requests found
......@@ -205,7 +205,7 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None,
os.makedirs(options.output_dir)
board_file = os.path.join(options.output_dir, 'boards.cfg')
genboardscfg = os.path.join(options.git, 'tools/genboardscfg.py')
status = subprocess.call([genboardscfg, '-o', board_file])
status = subprocess.call([genboardscfg, '-q', '-o', board_file])
if status != 0:
sys.exit("Failed to generate boards.cfg")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment