summaryrefslogtreecommitdiff
path: root/tools/buildman/cmdline.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-07-20 02:49:30 +0300
committerSimon Glass <sjg@chromium.org>2023-07-24 18:34:11 +0300
commitba8d099b95f2125605e26316f7187a33495bb82c (patch)
tree653dfa8de66381adbe3f21b54d5dab00b0814623 /tools/buildman/cmdline.py
parent39dbcaa1ad5a217e36678a1632c1e1ffa6bb82e2 (diff)
downloadu-boot-ba8d099b95f2125605e26316f7187a33495bb82c.tar.xz
buildman: Add an option to check maintainers and targets
In poking around it seems that many boards don't define a CONFIG_TARGET Kconfig variable. This is not strictly necessary, but add an option to buildman so these can be viewed. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/cmdline.py')
-rw-r--r--tools/buildman/cmdline.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/buildman/cmdline.py b/tools/buildman/cmdline.py
index 4331fbdab3..052e223597 100644
--- a/tools/buildman/cmdline.py
+++ b/tools/buildman/cmdline.py
@@ -60,6 +60,9 @@ def add_upto_m(parser):
help="Fetch a toolchain for architecture FETCH_ARCH ('list' to list)."
' You can also fetch several toolchains separate by comma, or'
" 'all' to download all")
+ parser.add_argument(
+ '--full-check', action='store_true',
+ help='Check maintainer entries and TARGET configs')
parser.add_argument('-g', '--git', type=str,
help='Git repo containing branch to build', default='.')
parser.add_argument('-G', '--config-file', type=str,