diff options
author | Simon Glass <sjg@chromium.org> | 2023-07-19 17:48:53 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2023-07-24 09:34:11 -0600 |
commit | 4ec76822747a5cdd82fff9a2accfb2beb7be6328 (patch) | |
tree | 194abebd40aa50ac86b72f107a80f6d1f9430eb6 | |
parent | ffd06d3d8dfdff2aba57aafad8866805f9f542df (diff) | |
download | u-boot-4ec76822747a5cdd82fff9a2accfb2beb7be6328.zip u-boot-4ec76822747a5cdd82fff9a2accfb2beb7be6328.tar.gz u-boot-4ec76822747a5cdd82fff9a2accfb2beb7be6328.tar.bz2 |
buildman: Tweak commits and show_bloat
Move setting of show_bloat to adjust_options() and adjust how the commits
variable is set. Together these remove the pylint warning about too many
statements.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | tools/buildman/control.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py index ece54cc..b0cc707 100644 --- a/tools/buildman/control.py +++ b/tools/buildman/control.py @@ -441,6 +441,10 @@ def adjust_options(options, series, selected): if not options.step: options.step = len(series.commits) - 1 + # We can't show function sizes without board details at present + if options.show_bloat: + options.show_detail = True + def setup_output_dir(output_dir, work_in_output, branch, no_subdirs, col, clean_dir): @@ -581,18 +585,11 @@ def do_buildman(options, args, toolchains=None, make_func=None, brds=None, # Work out which boards to build board_selected = brds.get_selected_dict() - if series: - commits = series.commits - else: - commits = None - + commits = series.commits if series else None if not options.ide: tprint(get_action_summary(options.summary, commits, board_selected, options.step, options.threads, options.jobs)) - # We can't show function sizes without board details at present - if options.show_bloat: - options.show_detail = True builder.SetDisplayOptions( options.show_errors, options.show_sizes, options.show_detail, options.show_bloat, options.list_error_boards, options.show_config, |