aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/upgrade.py
diff options
context:
space:
mode:
authorTzu-Jung Lee <roylee17@currantlabs.com>2015-11-09 02:30:32 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-11-25 07:57:02 +0000
commite2fe4c99f1020a20b579832c4feafcd0e9bc2f75 (patch)
tree572061ab2393b0dd2212b7f8574401c9e25045c3 /scripts/lib/devtool/upgrade.py
parent871d3279fd3360628c8fd9a37134eca541b10636 (diff)
downloadopenembedded-core-contrib-e2fe4c99f1020a20b579832c4feafcd0e9bc2f75.tar.gz
devtool: add sync command
The sync command is similar to the extract command, except it fetches the sync'ed and patched branch to an existing git repository. This enables users to keep track the upstream development while maintaining their own local git repository at the same time. Signed-off-by: Tzu-Jung Lee <roylee17@currantlabs.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/lib/devtool/upgrade.py')
-rw-r--r--scripts/lib/devtool/upgrade.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/upgrade.py b/scripts/lib/devtool/upgrade.py
index d38762373e..5410c9dd02 100644
--- a/scripts/lib/devtool/upgrade.py
+++ b/scripts/lib/devtool/upgrade.py
@@ -312,7 +312,7 @@ def upgrade(args, config, basepath, workspace):
rf = None
try:
- rev1 = standard._extract_source(args.srctree, False, 'devtool-orig', rd)
+ rev1 = standard._extract_source(args.srctree, False, 'devtool-orig', False, rd)
rev2, md5, sha256 = _extract_new_source(args.version, args.srctree, args.no_patch,
args.srcrev, args.branch, args.keep_temp,
tinfoil, rd)