diff options
author | Mateusz Kulikowski <mateusz.kulikowski@gmail.com> | 2016-01-14 20:37:41 +0100 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-01-20 19:06:23 -0700 |
commit | 27067a46c56cdaa0f8a2ef433f0aed4376834c44 (patch) | |
tree | e81f5fa7f1be8d34f4541a91d1d237531803fc29 /tools/patman/patman.py | |
parent | f0e075162f815f9cb769c7bb9003e0ad3b829811 (diff) | |
download | u-boot-27067a46c56cdaa0f8a2ef433f0aed4376834c44.tar.gz |
patman: Add --thread option
Add option to create threaded series of patches.
With it, it will be possible to create patch threads like this:
[PATCH 0/10] Add support for time travel
[PATCH 1/10] Add Flux Capacitor driver
[PATCH 2/10] Add Mr. Fusion driver
(...)
Internally it will call git send-email with --thread option
Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/patman.py')
-rwxr-xr-x | tools/patman/patman.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/patman/patman.py b/tools/patman/patman.py index 6fe8fe068c..d05c5ff8e1 100755 --- a/tools/patman/patman.py +++ b/tools/patman/patman.py @@ -61,6 +61,8 @@ parser.add_option('--no-check', action='store_false', dest='check_patch', help="Don't check for patch compliance") parser.add_option('--no-tags', action='store_false', dest='process_tags', default=True, help="Don't process subject tags as aliaes") +parser.add_option('-T', '--thread', action='store_true', dest='thread', + default=False, help='Create patches as a single thread') parser.usage += """ @@ -161,7 +163,7 @@ else: if its_a_go: cmd = gitutil.EmailPatches(series, cover_fname, args, options.dry_run, not options.ignore_bad_tags, cc_file, - in_reply_to=options.in_reply_to) + in_reply_to=options.in_reply_to, thread=options.thread) else: print col.Color(col.RED, "Not sending emails due to errors/warnings") |