summaryrefslogtreecommitdiff
path: root/tools/buildman/cmdline.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-07-19 17:48:27 -0600
committerSimon Glass <sjg@chromium.org>2023-07-24 09:34:10 -0600
commit1b21842eab660ab1f80b89057abab99473b3bb5a (patch)
tree9dbed46d2fe2543ec7bb6f320619f576b20ec385 /tools/buildman/cmdline.py
parent9a7cc8121f974582d3f07201b3e119e0d7c91559 (diff)
buildman: Add an option to check maintainers
Rather than using the -R option to get this report as a side effect, add a dedicated option for it. Disable CI for now as there are some missing maintainers, unfortunately. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/cmdline.py')
-rw-r--r--tools/buildman/cmdline.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/buildman/cmdline.py b/tools/buildman/cmdline.py
index a9cda249572..36acac5ee5b 100644
--- a/tools/buildman/cmdline.py
+++ b/tools/buildman/cmdline.py
@@ -85,6 +85,8 @@ def ParseArgs():
parser.add_option(
'-M', '--allow-missing', action='store_true', default=False,
help='Tell binman to allow missing blobs and generate fake ones as needed'),
+ parser.add_option('--maintainer-check', action='store_true',
+ help='Check that maintainer entries exist for each board')
parser.add_option(
'--no-allow-missing', action='store_true', default=False,
help='Disable telling binman to allow missing blobs'),