mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
buildman: Ask genboardscfg to be quiet
Now that this tool has a 'quiet' flag, use it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
69bbdd112b
commit
6a3fc91ea7
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue