diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-23 11:53:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-24 23:43:32 +0000 |
commit | d74efb6aa9b9c486cfbc9845a3c6ef24d30d15c0 (patch) | |
tree | 9cf9bce236260f59b5a1db1facecc3423d6547bf /meta | |
parent | cc32ccc2fb928b0afce7d4add1b61a3073f8988e (diff) | |
download | poky-d74efb6aa9b9c486cfbc9845a3c6ef24d30d15c0.tar.gz |
staging: Drop BB_SETSCENE_VERIFY_FUNCTION since it was replaced
BB_SETSCENE_VERIFY_FUNCTION2 replaced BB_SETSCENE_VERIFY_FUNCTION
and due to our minimum bitbake requirements there is no point in
retaining the older version any more.
(From OE-Core rev: f08d6ccda5db9fdc81d53370aea1f599718897da)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/staging.bbclass | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index 075200909b..df77408f30 100644 --- a/meta/classes/staging.bbclass +++ b/meta/classes/staging.bbclass | |||
@@ -194,21 +194,6 @@ def sysroot_checkhashes2(covered, tasknames, fns, d, invalidtasks): | |||
194 | problems.add(tid) | 194 | problems.add(tid) |
195 | return problems | 195 | return problems |
196 | 196 | ||
197 | BB_SETSCENE_VERIFY_FUNCTION = "sysroot_checkhashes" | ||
198 | |||
199 | def sysroot_checkhashes(covered, tasknames, fnids, fns, d, invalidtasks = None): | ||
200 | problems = set() | ||
201 | configurefnids = set() | ||
202 | if not invalidtasks: | ||
203 | invalidtasks = range(len(tasknames)) | ||
204 | for task in invalidtasks: | ||
205 | if tasknames[task] == "do_configure" and task not in covered: | ||
206 | configurefnids.add(fnids[task]) | ||
207 | for task in covered: | ||
208 | if tasknames[task] == "do_populate_sysroot" and fnids[task] in configurefnids: | ||
209 | problems.add(task) | ||
210 | return problems | ||
211 | |||
212 | python do_populate_sysroot () { | 197 | python do_populate_sysroot () { |
213 | bb.build.exec_func("sysroot_stage_all", d) | 198 | bb.build.exec_func("sysroot_stage_all", d) |
214 | bb.build.exec_func("sysroot_strip", d) | 199 | bb.build.exec_func("sysroot_strip", d) |