diff options
author | Simon Glass <sjg@chromium.org> | 2015-02-05 22:06:15 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 16:24:25 -0600 |
commit | 843312dcdd942dc1d7d9009863b04340287326e0 (patch) | |
tree | 0b053de3848904332936fd88fd5f6cfbc8bbd025 /tools/buildman/control.py | |
parent | 970f932a68e59adb87fad43560da01278f5ba4fa (diff) |
buildman: Allow comparison of build configuration
It is useful to be able to see CONFIG changes made by commits. Add this
feature to buildman using the -K flag so that all CONFIG changes are
reported.
The CONFIG options exist in a number of files. Each is reported
individually as well as a summary that covers all files. The output
shows three parts: green for additions, red for removals and yellow for
changes.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/control.py')
-rw-r--r-- | tools/buildman/control.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 720b978b23..8b3cd30c00 100644 --- a/tools/buildman/control.py +++ b/tools/buildman/control.py @@ -282,7 +282,8 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None, options.show_detail = True builder.SetDisplayOptions(options.show_errors, options.show_sizes, options.show_detail, options.show_bloat, - options.list_error_boards) + options.list_error_boards, + options.show_config) if options.summary: builder.ShowSummary(commits, board_selected) else: |