summaryrefslogtreecommitdiffstats
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 08:08:09 +0000
commit8ae27fa07be08b2c841d8e9a29ea1c909136f170 (patch)
treef796f53e07debd9644cd7442f64b74af424a5d4a /scripts/lib/devtool/upgrade.py
parent6bfa1dcc6ee28e6137359d9d32a4f6fe45bddb03 (diff)
downloadpoky-8ae27fa07be08b2c841d8e9a29ea1c909136f170.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. (From OE-Core rev: e2fe4c99f1020a20b579832c4feafcd0e9bc2f75) Signed-off-by: Tzu-Jung Lee <roylee17@currantlabs.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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):
312 312
313 rf = None 313 rf = None
314 try: 314 try:
315 rev1 = standard._extract_source(args.srctree, False, 'devtool-orig', rd) 315 rev1 = standard._extract_source(args.srctree, False, 'devtool-orig', False, rd)
316 rev2, md5, sha256 = _extract_new_source(args.version, args.srctree, args.no_patch, 316 rev2, md5, sha256 = _extract_new_source(args.version, args.srctree, args.no_patch,
317 args.srcrev, args.branch, args.keep_temp, 317 args.srcrev, args.branch, args.keep_temp,
318 tinfoil, rd) 318 tinfoil, rd)