aboutsummaryrefslogtreecommitdiff
path: root/tools/buildman
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-07-19 17:48:55 -0600
committerSimon Glass <sjg@chromium.org>2023-07-24 09:34:11 -0600
commit985d7ae4de9dfd8eaee190218f8c8744be42668d (patch)
tree60d2d6273d6cb8920f590e431d7d319d765474f4 /tools/buildman
parent68f917c0b146d24a9eba6f4a72cf4ee3c1bb86ef (diff)
downloadu-boot-985d7ae4de9dfd8eaee190218f8c8744be42668d.zip
u-boot-985d7ae4de9dfd8eaee190218f8c8744be42668d.tar.gz
u-boot-985d7ae4de9dfd8eaee190218f8c8744be42668d.tar.bz2
buildman: Drop some unnecessary variables
Drop some variables at the end of the do_bulidman() function. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r--tools/buildman/control.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py
index 9f775cb..f30b8be 100644
--- a/tools/buildman/control.py
+++ b/tools/buildman/control.py
@@ -616,9 +616,5 @@ def do_buildman(options, args, toolchains=None, make_func=None, brds=None,
TEST_BUILDER = builder
- # Work out which boards to build
- board_selected = brds.get_selected_dict()
-
- commits = series.commits if series else None
- retval = run_builder(builder, commits, board_selected, options)
- return retval
+ return run_builder(builder, series.commits if series else None,
+ brds.get_selected_dict(), options)