summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2017-02-27 10:09:38 +0100
committerJohannes Berg <johannes.berg@intel.com>2017-02-27 10:12:48 +0100
commitb5ccf480b741e8e835360d20f7f3ede26dfad74e (patch)
tree263747c78c49928c10484c5cc5fb7a259fcbe9c7 /devel
parentcac355e1b866ff28fb441012c7796838d2eb8d64 (diff)
git-tracker: add Change-Id to all types of commits if configured
My previous commit to optionally add a Change-Id missed two out of three types of commits internally created by the tracker, add the Change-Id to them as well. Fixes: 7d89b544a1d9 ("git-tracker: add an option to add a Change-Id to commits") Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'devel')
-rwxr-xr-xdevel/git-tracker.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/git-tracker.py b/devel/git-tracker.py
index c86906b9..1789ad97 100755
--- a/devel/git-tracker.py
+++ b/devel/git-tracker.py
@@ -239,7 +239,8 @@ if __name__ == '__main__':
branch, tree, kernelobjdir,
branch_tmpdir, wgitdir, backport_rev,
kernel_head, defconfig=defconfig,
- env=backport_author_env)
+ env=backport_author_env,
+ add_changeid=add_changeid)
continue
if old_data['backport'] == backport_rev and old_data[tree] == kernel_head:
continue
@@ -249,7 +250,8 @@ if __name__ == '__main__':
branch, tree, kernelobjdir,
branch_tmpdir, wgitdir, backport_rev,
kernel_head, defconfig=defconfig,
- env=backport_author_env)
+ env=backport_author_env,
+ add_changeid=add_changeid)
continue
# update from old to new
if last_success in old_data: