summaryrefslogtreecommitdiff
path: root/tools/patman/series.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-11-03 23:54:16 +0300
committerSimon Glass <sjg@chromium.org>2020-11-15 01:23:41 +0300
commitfcbec650e6216fdba0ffe6fc017a34ceed0c86cb (patch)
treee414f17103440d6780bcb0c04d778489d62caed8 /tools/patman/series.py
parenta55be354c02d3dc322d9e8b927618d378f7b81ce (diff)
downloadu-boot-fcbec650e6216fdba0ffe6fc017a34ceed0c86cb.tar.xz
patman: Add a Series-patchwork-url option
Add a commit tag to allow the Patchwork URL to be specified in a commit. This can be handy for when you submit code to multiple projects but don't want to use the -p option. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/series.py')
-rw-r--r--tools/patman/series.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/series.py b/tools/patman/series.py
index 4457719f2e..1d92bdb910 100644
--- a/tools/patman/series.py
+++ b/tools/patman/series.py
@@ -16,7 +16,7 @@ from patman import tools
# Series-xxx tags that we understand
valid_series = ['to', 'cc', 'version', 'changes', 'prefix', 'notes', 'name',
- 'cover_cc', 'process_log', 'links']
+ 'cover_cc', 'process_log', 'links', 'patchwork_url']
class Series(dict):
"""Holds information about a patch series, including all tags.