summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTzu-Jung Lee <roylee17@currantlabs.com>2015-11-02 19:21:25 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-01 21:32:03 +0000
commit44ef78a46b1b4a78379203eb104455fef6d9e0fc (patch)
treebae97b4d9b01f3dda58c714e4e73a9528c6d24e7 /scripts
parent804f5b83f39a0b8b57fbe9f5378dd46febe8058d (diff)
downloadpoky-44ef78a46b1b4a78379203eb104455fef6d9e0fc.tar.gz
devtool: include do_patch in SRCTREECOVEREDTASKS
The external source of kernel has been patched during the construction of git repository. Include the do_patch task in the SRCTREECOVEREDTASKS. (From OE-Core rev: 0731c5a9e98f7b7f6e5ada9bbb99acb3f5884516) 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')
-rw-r--r--scripts/lib/devtool/standard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
index 7d7c77a6e9..8efd2628fd 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -642,7 +642,7 @@ def modify(args, config, basepath, workspace):
642 f.write('EXTERNALSRC_BUILD_pn-%s = "%s"\n' % (pn, srctree)) 642 f.write('EXTERNALSRC_BUILD_pn-%s = "%s"\n' % (pn, srctree))
643 643
644 if bb.data.inherits_class('kernel', rd): 644 if bb.data.inherits_class('kernel', rd):
645 f.write('SRCTREECOVEREDTASKS = "do_validate_branches do_kernel_checkout do_fetch do_unpack"\n') 645 f.write('SRCTREECOVEREDTASKS = "do_validate_branches do_kernel_checkout do_fetch do_unpack do_patch"\n')
646 if initial_rev: 646 if initial_rev:
647 f.write('\n# initial_rev: %s\n' % initial_rev) 647 f.write('\n# initial_rev: %s\n' % initial_rev)
648 for commit in commits: 648 for commit in commits: