mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
genboardcfg: Support a quiet mode
We don't really need buildman to print this every time it runs. Add a flag to run quietly, that buildman can use. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
cb10579484
commit
69bbdd112b
1 changed files with 7 additions and 3 deletions
|
@ -403,18 +403,20 @@ def format_and_output(params_list, output):
|
||||||
with open(output, 'w', encoding="utf-8") as f:
|
with open(output, 'w', encoding="utf-8") as f:
|
||||||
f.write(COMMENT_BLOCK + '\n'.join(output_lines) + '\n')
|
f.write(COMMENT_BLOCK + '\n'.join(output_lines) + '\n')
|
||||||
|
|
||||||
def gen_boards_cfg(output, jobs=1, force=False):
|
def gen_boards_cfg(output, jobs=1, force=False, quiet=False):
|
||||||
"""Generate a board database file.
|
"""Generate a board database file.
|
||||||
|
|
||||||
Arguments:
|
Arguments:
|
||||||
output: The name of the output file
|
output: The name of the output file
|
||||||
jobs: The number of jobs to run simultaneously
|
jobs: The number of jobs to run simultaneously
|
||||||
force: Force to generate the output even if it is new
|
force: Force to generate the output even if it is new
|
||||||
|
quiet: True to avoid printing a message if nothing needs doing
|
||||||
"""
|
"""
|
||||||
check_top_directory()
|
check_top_directory()
|
||||||
|
|
||||||
if not force and output_is_new(output):
|
if not force and output_is_new(output):
|
||||||
print("%s is up to date. Nothing to do." % output)
|
if not quiet:
|
||||||
|
print("%s is up to date. Nothing to do." % output)
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
params_list = scan_defconfigs(jobs)
|
params_list = scan_defconfigs(jobs)
|
||||||
|
@ -435,9 +437,11 @@ def main():
|
||||||
help='the number of jobs to run simultaneously')
|
help='the number of jobs to run simultaneously')
|
||||||
parser.add_option('-o', '--output', default=OUTPUT_FILE,
|
parser.add_option('-o', '--output', default=OUTPUT_FILE,
|
||||||
help='output file [default=%s]' % OUTPUT_FILE)
|
help='output file [default=%s]' % OUTPUT_FILE)
|
||||||
|
parser.add_option('-q', '--quiet', action="store_true", help='run silently')
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
|
|
||||||
gen_boards_cfg(options.output, jobs=options.jobs, force=options.force)
|
gen_boards_cfg(options.output, jobs=options.jobs, force=options.force,
|
||||||
|
quiet=options.quiet)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Add table
Reference in a new issue