summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-12-20 01:32:45 +0300
committerSimon Glass <sjg@chromium.org>2023-01-06 05:21:57 +0300
commit30529307141339d4780bddb3557c115fbf1f51c1 (patch)
tree87527446cae142ca88f97dbc20f9a4b6f3e225bb /tools
parentf393f59e5d222711b9f35a8d2d32f4ba374d4134 (diff)
downloadu-boot-30529307141339d4780bddb3557c115fbf1f51c1.tar.xz
patman: document default 'send' command
Document that this command is the default and what it's intended for. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@savoirfairelinux.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/patman/__main__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/patman/__main__.py b/tools/patman/__main__.py
index 70968f661b..ece59c5a62 100755
--- a/tools/patman/__main__.py
+++ b/tools/patman/__main__.py
@@ -55,7 +55,8 @@ parser.add_argument('-H', '--full-help', action='store_true', dest='full_help',
default=False, help='Display the README file')
subparsers = parser.add_subparsers(dest='cmd')
-send = subparsers.add_parser('send')
+send = subparsers.add_parser(
+ 'send', help='Format, check and email patches (default command)')
send.add_argument('-i', '--ignore-errors', action='store_true',
dest='ignore_errors', default=False,
help='Send patches email even if patch errors are found')