/openbmc/openbmc/poky/meta/lib/oeqa/controllers/ |
H A D | testtargetloader.py | 18 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 D | query.py | 74 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__.py | 134 bbpath = d.getVar("BBPATH") 135 newfn, attempts = bb.utils.which(bbpath, fn, history=True) 139 raise IOError(errno.ENOENT, "file %s not found in %s" % (fn, bbpath))
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | crate.py | 138 bbpath = self._cargo_bitbake_path(rootdir) 140 mdpath = os.path.join(bbpath, cratepath, mdfile)
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | cookerdata.py | 189 bbpath = data.getVar("BBPATH") 190 if bbpath: 191 for i in bbpath.split(":"): 211 bbpath = None 213 bbpath = os.environ['BBPATH'] 214 d.setVar('BBPATH', bbpath)
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/ |
H A D | context.py | 233 def _get_cases_paths(self, bbpath): argument 235 for layer in bbpath: 315 bbpath = self.tc.td['BBPATH'].split(':') 317 for l in bbpath) if os.path.exists(p)]
|
/openbmc/openbmc/poky/bitbake/lib/bb/parse/parse_py/ |
H A D | ConfHandler.py | 81 bbpath = "%s:%s" % (dname, data.getVar("BBPATH")) 82 abs_fn, attempts = bb.utils.which(bbpath, fn, history=True)
|
H A D | BBHandler.py | 59 bbpath = d.getVar("BBPATH") 60 abs_fn, attempts = bb.utils.which(bbpath, file, history=True)
|
/openbmc/openbmc/poky/scripts/esdk-tools/ |
H A D | devtool | 224 parser.add_argument('--bbpath', help='Explicitly specify the BBPATH, rather than getting it from the metadata') 288 if global_args.bbpath is None: 293 global_args.bbpath = tinfoil.config_data.getVar('BBPATH') 300 pluginpaths = [os.path.join(path, 'lib', 'devtool') for path in global_args.bbpath.split(':') + [scripts_path]]
|
/openbmc/openbmc/meta-arm/scripts/ |
H A D | machine-summary.py | 44 bbpath = d.getVar("BBPATH").split(":") 46 for path in reversed(sorted(bbpath)):
|
/openbmc/openbmc/poky/scripts/ |
H A D | devtool | 288 if global_args.bbpath is None: 293 global_args.bbpath = tinfoil.config_data.getVar('BBPATH') 300 …pluginpaths = [os.path.join(path, 'lib', 'devtool') for path in global_args.bbpath.split(':') + [s…
|
H A D | test-remote-image | 144 bbpath = get_bb_var('BBPATH').split(':') 151 controller = testtargetloader.get_controller_module(target_controller, bbpath)
|
/openbmc/openbmc/poky/meta/lib/oeqa/ |
H A D | oetest.py | 194 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 D | useradd-staticids.bbclass | 68 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 D | archiver.bbclass | 563 bbpath = '%s:%s' % (dirname, d.getVar('BBPATH')) 574 incfile = bb.utils.which(bbpath, incfile)
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | recipetool.py | 819 cls.bbpath = bb_vars['BBPATH'] 858 searchpath = self.bbpath.split(':') + [os.path.dirname(recipetool.output)]
|
H A D | devtool.py | 2120 bbpath = get_bb_var('BBPATH') 2121 searchpath = bbpath.split(':') + [os.path.dirname(devtool.output)]
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | package.py | 441 bbpath = d.getVar('BBPATH') 444 confpath = bb.utils.which(bbpath, conf_file) 446 str += " %s" % bb.utils.which(bbpath, conf_file)
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | populate_sdk_ext.bbclass | 248 bbpath = d.getVar('BBPATH') 251 …bb.process.run(['devtool', '--bbpath', bbpath, '--basepath', baseoutpath, 'create-workspace', '--l…
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | sanity.bbclass | 265 bbpath = [] 269 bbpath += vbbpath.split(":") 270 for p in bbpath:
|
/openbmc/openbmc/poky/documentation/ref-manual/ |
H A D | devtool-reference.rst | 29 …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 D | bitbake-user-manual-hello.rst | 175 > raise IOError(errno.ENOENT, "file %s not found in %s" % (fn, bbpath))
|
/openbmc/linux/ |
H A D | opengrok1.0.log | [all...] |
/openbmc/ |
D | opengrok1.0.log | [all...] |
D | opengrok2.0.log | [all...] |