Home
last modified time | relevance | path

Searched refs:bbpath (Results 1 – 22 of 22) sorted by relevance

/openbmc/openbmc/poky/meta/lib/oeqa/controllers/
H A Dtesttargetloader.py18 def get_controller_module(self, target, bbpath): argument
19 controllerslist = self.get_controller_modulenames(bbpath)
26 def get_controller_modulenames(self, bbpath): argument
41 for p in bbpath:
/openbmc/openbmc/poky/bitbake/lib/bblayers/
H A Dquery.py74 bbpath = str(self.tinfoil.config_data.getVar('BBPATH'))
82 mainfile = bb.utils.which(bbpath, os.path.join('classes', classfile))
126 bbpath = str(self.tinfoil.config_data.getVar('BBPATH'))
131 if bb.utils.which(bbpath, cfile, history=False):
366 bbpath = str(self.tinfoil.config_data.getVar('BBPATH'))
453 … self.print_cross_files(bbpath, keyword, layername, f, needed_file, args.filenames, ignore_layers)
479 …self.print_cross_files(bbpath, keyword, layername, f, m.group(1) + bbclass, args.filenames, ignore…
482 …def print_cross_files(self, bbpath, keyword, layername, f, needed_filename, show_filenames, ignore… argument
484 needed_file = bb.utils.which(bbpath, needed_filename)
/openbmc/openbmc/poky/bitbake/lib/bb/parse/
H A D__init__.py130 bbpath = d.getVar("BBPATH")
131 newfn, attempts = bb.utils.which(bbpath, fn, history=True)
135 raise IOError(errno.ENOENT, "file %s not found in %s" % (fn, bbpath))
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dcrate.py137 bbpath = self._cargo_bitbake_path(rootdir)
139 mdpath = os.path.join(bbpath, cratepath, mdfile)
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dcookerdata.py188 bbpath = data.getVar("BBPATH")
189 if bbpath:
190 for i in bbpath.split(":"):
210 bbpath = None
212 bbpath = os.environ['BBPATH']
213 d.setVar('BBPATH', bbpath)
/openbmc/openbmc/poky/bitbake/lib/bb/parse/parse_py/
H A DConfHandler.py79 bbpath = "%s:%s" % (dname, data.getVar("BBPATH"))
80 abs_fn, attempts = bb.utils.which(bbpath, fn, history=True)
H A DBBHandler.py59 bbpath = d.getVar("BBPATH")
60 abs_fn, attempts = bb.utils.which(bbpath, file, history=True)
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/
H A Dcontext.py214 def _get_cases_paths(self, bbpath): argument
216 for layer in bbpath:
296 bbpath = self.tc.td['BBPATH'].split(':')
298 for l in bbpath) if os.path.exists(p)]
/openbmc/openbmc/poky/scripts/
H A Ddevtool291 if global_args.bbpath is None:
295 global_args.bbpath = tinfoil.config_data.getVar('BBPATH')
302 …pluginpaths = [os.path.join(path, 'lib', 'devtool') for path in global_args.bbpath.split(':') + [s…
H A Dtest-remote-image144 bbpath = get_bb_var('BBPATH').split(':')
151 controller = testtargetloader.get_controller_module(target_controller, bbpath)
/openbmc/openbmc/poky/scripts/esdk-tools/
H A Ddevtool291 if global_args.bbpath is None:
295 global_args.bbpath = tinfoil.config_data.getVar('BBPATH')
302 …pluginpaths = [os.path.join(path, 'lib', 'devtool') for path in global_args.bbpath.split(':') + [s…
/openbmc/openbmc/meta-arm/scripts/
H A Dmachine-summary.py44 bbpath = d.getVar("BBPATH").split(":")
46 for path in reversed(sorted(bbpath)):
/openbmc/openbmc/poky/meta/lib/oeqa/
H A Doetest.py194 def _get_tests_list(self, bbpath, extrapath): argument
207 for p in bbpath:
227 for p in bbpath:
/openbmc/openbmc/poky/meta/classes/
H A Duseradd-staticids.bbclass68 bbpath = d.getVar('BBPATH')
73 files.append(bb.utils.which(bbpath, conf_file))
255 bbpath = d.getVar('BBPATH')
262 bb.parse.mark_dependency(d, bb.utils.which(bbpath, conf_file))
H A Darchiver.bbclass562 bbpath = '%s:%s' % (dirname, d.getVar('BBPATH'))
573 incfile = bb.utils.which(bbpath, incfile)
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Drecipetool.py993 cls.bbpath = bb_vars['BBPATH']
1032 searchpath = self.bbpath.split(':') + [os.path.dirname(recipetool.output)]
H A Ddevtool.py2035 bbpath = get_bb_var('BBPATH')
2036 searchpath = bbpath.split(':') + [os.path.dirname(devtool.output)]
/openbmc/openbmc/poky/meta/lib/oe/
H A Dpackage.py426 bbpath = d.getVar('BBPATH')
429 confpath = bb.utils.which(bbpath, conf_file)
431 str += " %s" % bb.utils.which(bbpath, conf_file)
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dpopulate_sdk_ext.bbclass249 bbpath = d.getVar('BBPATH')
252 …bb.process.run(['devtool', '--bbpath', bbpath, '--basepath', baseoutpath, 'create-workspace', '--l…
/openbmc/openbmc/poky/meta/classes-global/
H A Dsanity.bbclass265 bbpath = []
269 bbpath += vbbpath.split(":")
270 for p in bbpath:
/openbmc/openbmc/poky/documentation/ref-manual/
H A Ddevtool-reference.rst29 …usage: devtool [--basepath BASEPATH] [--bbpath BBPATH] [-d] [-q] [--color COLOR] [-h] <subcommand>…
35 --bbpath BBPATH Explicitly specify the BBPATH, rather than getting it from the metadata
/openbmc/openbmc/poky/bitbake/doc/bitbake-user-manual/
H A Dbitbake-user-manual-hello.rst175 > raise IOError(errno.ENOENT, "file %s not found in %s" % (fn, bbpath))