Home
last modified time | relevance | path

Searched refs:taskdepdata (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/
H A D__init__.py458 taskdepdata = d.getVar("BB_TASKDEPDATA", False)
474 for dep in taskdepdata:
475 data = taskdepdata[dep]
489 for dep in taskdepdata[dep2][3]:
490 if taskdepdata[dep][0] != pn:
499 c = taskdepdata[dep][0]
500 … manifest, d2 = oe.sstatesig.find_sstate_manifest(c, taskdepdata[dep][2], taskname, d, multilibs)
502 bb.fatal("No manifest generated from: %s in %s" % (c, taskdepdata[dep][2]))
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dpackage_pkgdata.bbclass32 taskdepdata = d.getVar("BB_TASKDEPDATA", False)
49 for dep in taskdepdata:
50 data = taskdepdata[dep]
64 setscenedeps = copy.deepcopy(taskdepdata)
80 for dep in taskdepdata:
H A Dstaging.bbclass263 taskdepdata = d.getVar("BB_TASKDEPDATA", False)
268 #bb.warn(str(taskdepdata))
291 for dep in taskdepdata:
292 data = taskdepdata[dep]
307 setscenedeps = copy.deepcopy(taskdepdata)
323 #bb.note("Full dep tree is:\n%s" % print_dep_tree(taskdepdata))
337 for dep in taskdepdata:
679 taskdepdata = d.getVar("BB_TASKDEPDATA", False)
681 for dep in taskdepdata.values():
H A Dnative.bbclass219 taskdepdata = d.getVar("BB_TASKDEPDATA", False)
222 dep[0]:dep[6] for dep in taskdepdata.values() if
H A Dcreate-spdx.bbclass342 taskdepdata = d.getVar("BB_TASKDEPDATA", False)
344 dep[0] for dep in taskdepdata.values() if
617 taskdepdata = d.getVar("BB_TASKDEPDATA", False)
619 dep[0] for dep in taskdepdata.values() if dep[0] != d.getVar("PN")
H A Dpackage.bbclass726 taskdepdata = d.getVar("BB_TASKDEPDATA", False)
727 for dep in taskdepdata:
728 if taskdepdata[dep][1] == "do_package" and taskdepdata[dep][0] == pn:
729 return taskdepdata[dep][6]
754 #taskdepdata = d.getVar("BB_TASKDEPDATA", False)
755 #for dep in taskdepdata:
756 # bb.warn('%s:%s = %s' % (taskdepdata[dep][0], taskdepdata[dep][1], taskdepdata[dep][6]))
H A Dinsane.bbclass1069 taskdepdata = d.getVar("BB_TASKDEPDATA", False)
1071 for dep in taskdepdata:
1072 taskdeps.add(taskdepdata[dep][0])
/OK3568_Linux_fs/yocto/poky/bitbake/bin/
H A Dbitbake-worker148 …tabuilder, workerdata, fn, task, taskname, taskhash, unihash, appends, taskdepdata, extraconfigdat… argument
245 the_data.setVar("BB_TASKDEPDATA", taskdepdata)
477 …fn, task, taskname, taskhash, unihash, quieterrors, appends, taskdepdata, dry_run_exec = pickle.lo…
480 …lder, self.workerdata, fn, task, taskname, taskhash, unihash, appends, taskdepdata, self.extraconf…
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Drunqueue.py2143 taskdepdata = self.sq_build_taskdepdata(task)
2151 …, unihash, True, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, False)) + b"</…
2154 …, unihash, True, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, False)) + b"</…
2224 taskdepdata = self.build_taskdepdata(task)
2238 … unihash, False, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, self.rqdata.se…
2241 … unihash, False, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, self.rqdata.se…
2298 taskdepdata = {}
2313 taskdepdata[revdep] = [pn, taskname, fn, deps, provides, taskhash, unihash]
2315 if revdep2 not in taskdepdata:
2320 return taskdepdata
[all …]