1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +02:00

buildman: Show board list with -x

When -x is used, buildman does not show the list of boards that will be
built, since there are no terms which cause boards to be added, only
terms which cause them to be removed.

Add a special case to fix this.

Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Simon Glass
2024-07-11 09:10:04 +01:00
parent bbef829f9d
commit e8effc3854

View File

@@ -124,7 +124,8 @@ def show_actions(series, why_selected, boards_selected, output_dir,
print(commit.subject)
print()
for arg in why_selected:
if arg != 'all':
# When -x is used, only the 'all' member exists
if arg != 'all' or len(why_selected) == 1:
print(arg, f': {len(why_selected[arg])} boards')
if verbose:
print(f" {' '.join(why_selected[arg])}")