staging.bbclass: Add BB_SETSCENE_VERIFY_FUNCTION function

Since we clean out do_populate_sysroot if do_configure runs, don't
allow do_populate_sysroot_setscene functions if we're going to
run do_configure.

(From OE-Core rev: 5f1dc1991f97037692193572298eb7f7a5640760)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-11-21 14:37:10 +00:00
parent 7a2458f451
commit 3ab018c625
1 changed files with 15 additions and 0 deletions

View File

@ -73,6 +73,21 @@ python sysroot_cleansstate () {
}
do_configure[prefuncs] += "sysroot_cleansstate"
BB_SETSCENE_VERIFY_FUNCTION = "sysroot_checkhashes"
def sysroot_checkhashes(covered, tasknames, fnids, fns, d):
problems = set()
configurefnids = set()
for task in xrange(len(tasknames)):
if tasknames[task] == "do_configure" and task not in covered:
configurefnids.add(fnids[task])
for task in covered:
if tasknames[task] == "do_populate_sysroot" and fnids[task] in configurefnids:
problems.add(task)
bb.error("sysroot task found %s" % fns[fnids[task]])
return problems
python do_populate_sysroot () {
#
# if do_stage exists, we're legacy. In that case run the do_stage,