Home
last modified time | relevance | path

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

/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/controllers/
H A Dtesttargetloader.py16 def get_controller_module(self, target, bbpath): argument
17 controllerslist = self.get_controller_modulenames(bbpath)
24 def get_controller_modulenames(self, bbpath): argument
39 for p in bbpath:
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bblayers/
H A Dquery.py73 bbpath = str(self.tinfoil.config_data.getVar('BBPATH'))
81 mainfile = bb.utils.which(bbpath, os.path.join('classes', classfile))
125 bbpath = str(self.tinfoil.config_data.getVar('BBPATH'))
128 if not bb.utils.which(bbpath, classfile, history=False):
355 bbpath = str(self.tinfoil.config_data.getVar('BBPATH'))
442 … self.print_cross_files(bbpath, keyword, layername, f, needed_file, args.filenames, ignore_layers)
468 …self.print_cross_files(bbpath, keyword, layername, f, m.group(1) + bbclass, args.filenames, ignore…
471 …def print_cross_files(self, bbpath, keyword, layername, f, needed_filename, show_filenames, ignore… argument
473 needed_file = bb.utils.which(bbpath, needed_filename)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/
H A Dcontext.py197 bbpath = self.tc_kwargs['init']['td']['BBPATH'].split(':')
199 for path in bbpath:
208 def _get_cases_paths(self, bbpath): argument
210 for layer in bbpath:
291 bbpath = self.tc.td['BBPATH'].split(':')
293 for l in bbpath) if os.path.exists(p)]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/parse/
H A D__init__.py122 bbpath = d.getVar("BBPATH")
123 newfn, attempts = bb.utils.which(bbpath, fn, history=True)
127 raise IOError(errno.ENOENT, "file %s not found in %s" % (fn, bbpath))
/OK3568_Linux_fs/yocto/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)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A Dcrate.py132 bbpath = self._cargo_bitbake_path(rootdir)
134 mdpath = os.path.join(bbpath, cratepath, mdfile)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/parse/parse_py/
H A DConfHandler.py78 bbpath = "%s:%s" % (dname, data.getVar("BBPATH"))
79 abs_fn, attempts = bb.utils.which(bbpath, fn, history=True)
H A DBBHandler.py51 bbpath = d.getVar("BBPATH")
52 abs_fn, attempts = bb.utils.which(bbpath, file, history=True)
/OK3568_Linux_fs/yocto/poky/scripts/
H A Ddevtool281 if global_args.bbpath is None:
285 global_args.bbpath = tinfoil.config_data.getVar('BBPATH')
292 for path in global_args.bbpath.split(':') + [scripts_path]:
H A Dtest-remote-image144 bbpath = get_bb_var('BBPATH').split(':')
151 controller = testtargetloader.get_controller_module(target_controller, bbpath)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/
H A Doetest.py209 def _get_tests_list(self, bbpath, extrapath): argument
222 for p in bbpath:
242 for p in bbpath:
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Duseradd-staticids.bbclass62 bbpath = d.getVar('BBPATH')
67 files.append(bb.utils.which(bbpath, conf_file))
249 bbpath = d.getVar('BBPATH')
256 bb.parse.mark_dependency(d, bb.utils.which(bbpath, conf_file))
H A Dpopulate_sdk_ext.bbclass249 bbpath = d.getVar('BBPATH')
252 …bb.process.run(['devtool', '--bbpath', bbpath, '--basepath', baseoutpath, 'create-workspace', '--c…
H A Darchiver.bbclass550 bbpath = '%s:%s' % (dirname, d.getVar('BBPATH'))
561 incfile = bb.utils.which(bbpath, incfile)
H A Dbase.bbclass23 bbpath = [os.path.join(dir, "lib") for dir in d.getVar("BBPATH").split(":")]
24 sys.path[0:0] = [dir for dir in bbpath if dir not in sys.path]
H A Dsanity.bbclass259 bbpath = []
263 bbpath += vbbpath.split(":")
264 for p in bbpath:
H A Dpackage.bbclass994 bbpath = d.getVar('BBPATH')
997 confpath = bb.utils.which(bbpath, conf_file)
999 str += " %s" % bb.utils.which(bbpath, conf_file)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Drecipetool.py529 cls.bbpath = bb_vars['BBPATH']
556 searchpath = self.bbpath.split(':') + [os.path.dirname(recipetool.output)]
H A Ddevtool.py1695 bbpath = get_bb_var('BBPATH')
1696 searchpath = bbpath.split(':') + [os.path.dirname(devtool.output)]
/OK3568_Linux_fs/yocto/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
/OK3568_Linux_fs/yocto/poky/bitbake/doc/bitbake-user-manual/
H A Dbitbake-user-manual-hello.rst192 raise IOError("file %s not found in %s" % (fn, bbpath))