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>2016-01-12 08:42:29 +0000
commit61a7de097a1c6f8f98455e9f738da15a3035caa1 (patch)
tree7d65e54f99395f4273d7eecf4dae150e7d1883c9 /scripts
parent82c007203386027a6e5d48a84d4c709ee8370696 (diff)
downloadpoky-61a7de097a1c6f8f98455e9f738da15a3035caa1.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 master rev: 0731c5a9e98f7b7f6e5ada9bbb99acb3f5884516) (From OE-Core rev: e82466ebd9c8b9277255680d5efdd76eabf125b1) 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 1285974d44..c5c647b2f3 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -593,7 +593,7 @@ def modify(args, config, basepath, workspace):
593 f.write('EXTERNALSRC_BUILD_pn-%s = "%s"\n' % (pn, srctree)) 593 f.write('EXTERNALSRC_BUILD_pn-%s = "%s"\n' % (pn, srctree))
594 594
595 if bb.data.inherits_class('kernel', rd): 595 if bb.data.inherits_class('kernel', rd):
596 f.write('SRCTREECOVEREDTASKS = "do_validate_branches do_kernel_checkout do_fetch do_unpack"\n') 596 f.write('SRCTREECOVEREDTASKS = "do_validate_branches do_kernel_checkout do_fetch do_unpack do_patch"\n')
597 if initial_rev: 597 if initial_rev:
598 f.write('\n# initial_rev: %s\n' % initial_rev) 598 f.write('\n# initial_rev: %s\n' % initial_rev)
599 for commit in commits: 599 for commit in commits: