/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | command.py | 25 import bb.cooker 55 def __init__(self, cooker, process_server): argument 56 self.cooker = cooker 71 self.cooker.init_configdata() 73 self.remotedatastores = bb.remotedata.RemoteDatastores(self.cooker) 90 self.cooker.updateCacheSync() 107 self.cooker.idleCallBackRegister(self.runAsyncCommand, process_server) 112 …if self.cooker.state in (bb.cooker.State.ERROR, bb.cooker.State.SHUTDOWN, bb.cooker.State.FORCE_SH… 115 self.cooker.updateCache() 122 if needcache and self.cooker.state != bb.cooker.State.RUNNING: [all …]
|
H A D | remotedata.py | 16 def __init__(self, cooker): argument 17 self.cooker = cooker 20 self.datastores[0] = self.cooker.data 28 self.datastores[0] = self.cooker.data
|
H A D | runqueue.py | 460 def __init__(self, rq, cooker, cfgData, dataCaches, taskData, targets): argument 461 self.cooker = cooker 682 bb.event.check_for_interrupts(self.cooker.data) 831 bb.event.check_for_interrupts(self.cooker.data) 928 bb.event.check_for_interrupts(self.cooker.data) 1010 bb.event.check_for_interrupts(self.cooker.data) 1017 if self.cooker.configuration.runall: 1031 for task in self.cooker.configuration.runall: 1042 if self.cooker.configuration.force: 1052 if self.cooker.configuration.runall: [all …]
|
H A D | tinfoil.py | 20 import bb.cooker 327 self.cooker = None 384 extrafeatures = [bb.cooker.CookerFeatures.BASEDATASTORE_TRACKING] 427 self.cooker = TinfoilCookerAdapter(self) 428 self.cooker_data = self.cooker.recipecaches[''] 575 recipecache = self.cooker.recipecaches[mc] 601 recipecache = self.cooker.recipecaches[mc] 622 recipecache = self.cooker.recipecaches[mc]
|
H A D | cooker.py | 103 def __init__(self, cooker, eventfile): argument 104 self.cooker = cooker 110 … f.write("%s\n" % json.dumps({ "allvariables" : self.cooker.getAllKeysWithFlags(["doc", "func"])})) 2108 def __init__(self, cooker, mcfilelist, masked): argument 2110 self.cooker = cooker 2111 self.cfgdata = cooker.data 2112 self.cfghash = cooker.databuilder.data_hash 2113 self.cfgbuilder = cooker.databuilder 2127 … self.bb_caches = bb.cache.MulticonfigCache(self.cfgbuilder, self.cfghash, cooker.caches_array) 2130 for mc in self.cooker.multiconfigs: [all …]
|
H A D | main.py | 25 from bb import cooker 428 extrafeatures.append(bb.cooker.CookerFeatures.RECIPE_SIGGEN_INFO)
|
/openbmc/openbmc/poky/bitbake/lib/bb/server/ |
H A D | xmlrpcserver.py | 17 import bb.cooker 57 def __init__(self, interface, cooker, parent): argument 71 self.cooker = cooker 106 if self.server.cooker.state in [bb.cooker.State.PARSING, bb.cooker.State.RUNNING]: 124 … return self.server.cooker.command.runCommand(command, self.server.parent, self.server.readonly)
|
H A D | process.py | 127 … self.xmlrpc = bb.server.xmlrpcserver.BitBakeXMLRPCServer(self.xmlrpcinterface, self.cooker, self) 143 if self.cooker.configuration.profile: 162 return len(self._idlefuns) == 0 and self.cooker.command.currentAsyncCommand is None 174 self.cooker.command.currentAsyncCommand = cmd 179 self.cooker.command.currentAsyncCommand = None 184 return self.cooker.command.currentAsyncCommand 187 self.cooker.pre_serve() 221 self.cooker.clientComplete() 296 reply = self.cooker.command.runCommand(command, self) 308 if not seendata and hasattr(self.cooker, "data"): [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bblayers/ |
H A D | action.py | 155 for mc in self.tinfoil.cooker.multiconfigs: 156 for f in self.tinfoil.cooker.collections[mc].overlayed.keys(): 157 for of in self.tinfoil.cooker.collections[mc].overlayed[f]: 187 for mc in self.tinfoil.cooker.multiconfigs: 188 … appends |= set(self.tinfoil.cooker.collections[mc].get_file_appends(f1full)) 197 for mc in self.tinfoil.cooker.multiconfigs: 198 bbappends |= set(self.tinfoil.cooker.collections[mc].bbappends) 219 for layername, pattern, regex, _ in self.tinfoil.cooker.bbfile_config_priorities:
|
H A D | query.py | 34 for layer, _, regex, pri in self.tinfoil.cooker.bbfile_config_priorities: 138 pkg_pn = self.tinfoil.cooker.recipecaches[mc].pkg_pn 145 skiplist = list(self.tinfoil.cooker.skiplist_by_mc[mc].keys()) 165 … skipped = ' (skipped: %s)' % self.tinfoil.cooker.skiplist_by_mc[mc][f].skipreason 206 if realfn[1] and realfn[0] in self.tinfoil.cooker.recipecaches[mc].pkg_fn: 286 cooker_data = self.tinfoil.cooker.recipecaches[args.mc] 322 for f in self.tinfoil.cooker.skiplist_by_mc[mc].keys()] 349 appends = self.tinfoil.cooker.collections[mc].get_file_appends(basename)
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | cooker.py | 11 import bb, bb.cooker 61 logger = bb.cooker.logger 64 collection = bb.cooker.CookerCollectFiles(bbfile_config_priorities)
|
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/ |
H A D | README | 6 and cooker. 12 The cooker plugin works by reading the information from the current build 25 cooker.py:
|
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/tests/testdata/ |
H A D | README | 1 This test data is used to verify the 'cooker' module of the layerindex. 10 Since we do not have a fully populated cooker, we use this to test the
|
/openbmc/openbmc/poky/scripts/contrib/ |
H A D | list-packageconfig-flags.py | 29 import bb.cooker 36 …_versions) = bb.providers.findProviders(bbhandler.config_data, bbhandler.cooker.recipecaches[''], … 49 pkg_pn = bbhandler.cooker.recipecaches[''].pkg_pn
|
H A D | devtool-stress.py | 35 pkg_pn = tinfoil.cooker.recipecaches[''].pkg_pn 36 …rred_versions) = bb.providers.findProviders(tinfoil.config_data, tinfoil.cooker.recipecaches[''], … 43 …inherits = [os.path.splitext(os.path.basename(f))[0] for f in tinfoil.cooker.recipecaches[''].inhe…
|
H A D | verify-homepage.py | 40 pkg_pn = bbhandler.cooker.recipecaches[''].pkg_pn
|
/openbmc/openbmc/poky/bitbake/lib/bb/ui/ |
H A D | toasterui.py | 32 featureSet = [bb.cooker.CookerFeatures.HOB_EXTRA_CACHES, bb.cooker.CookerFeatures.BASEDATASTORE_TRA… 423 if isinstance(event, bb.cooker.CookerExit):
|
H A D | knotty.py | 29 import bb.cooker 34 featureSet = [bb.cooker.CookerFeatures.SEND_SANITYEVENTS, bb.cooker.CookerFeatures.BASEDATASTORE_TR… 811 if isinstance(event, (bb.command.CommandCompleted, bb.cooker.CookerExit)):
|
/openbmc/openbmc/poky/scripts/ |
H A D | oe-time-dd-test.sh | 39 tail -30 tmp*/log/cooker/*/console-latest.log
|
H A D | oe-check-sstate | 32 recipecaches = tinfoil.cooker.recipecaches
|
H A D | verify-bashisms | 124 pkg_pn = tinfoil.cooker.recipecaches[""].pkg_pn
|
/openbmc/openbmc/poky/documentation/migration-guides/ |
H A D | release-notes-3.4.1.rst | 30 - bitbake: cooker: Fix task-depends.dot for multiconfig targets 31 - bitbake: cooker: Handle parse threads disappearing to avoid hangs 32 - bitbake: cooker: Handle parsing results queue race 33 - bitbake: cooker: Remove debug code, oops :( 34 - bitbake: cooker: check if upstream hash equivalence server is available
|
/openbmc/openbmc/poky/bitbake/bin/ |
H A D | toaster-eventreplay | 31 import bb.cooker
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | tinfoil.py | 111 pkg_pn = tinfoil.cooker.recipecaches[''].pkg_pn 116 for fn, pn in tinfoil.cooker.recipecaches[''].pkg_fn.items():
|
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | import.py | 61 …current_fns = [os.path.basename(recipe[0]) for recipe in tinfoil.cooker.recipecaches[''].pkg_fn.it…
|