Searched refs:layerpath (Results 1 – 11 of 11) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/ |
H A D | cooker.py | 108 layerpath = entry 110 layerpath = bbfile_collections[entry] 112 … layername = d.getVar('BBLAYERS_LAYERINDEX_NAME_%s' % entry) or os.path.basename(layerpath) 114 layerurl = self._handle_git_remote(layerpath) 120 if os.path.isdir(layerpath): 121 … layerbasepath = self._run_command('git rev-parse --show-toplevel', layerpath, default=layerpath) 122 if os.path.abspath(layerpath) != os.path.abspath(layerbasepath): 123 layersubdir = os.path.abspath(layerpath)[len(layerbasepath) + 1:] 125 … layerbranch = self._run_command('git rev-parse --abbrev-ref HEAD', layerpath, default="<unknown>") 126 layerrev = self._run_command('git rev-parse HEAD', layerpath, default="<unknown>") [all …]
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | newappend.py | 32 def layer(layerpath): argument 33 if not os.path.exists(os.path.join(layerpath, 'conf', 'layer.conf')): 34 raise argparse.ArgumentTypeError('{0!r} must be a path to a valid layer'.format(layerpath)) 35 return layerpath
|
H A D | append.py | 409 def layer(layerpath): argument 410 if not os.path.exists(os.path.join(layerpath, 'conf', 'layer.conf')): 411 raise argparse.ArgumentTypeError('{0!r} must be a path to a valid layer'.format(layerpath)) 412 return layerpath
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | bblayers.py | 101 layerpath = os.path.join(self.builddir, layername) 102 …self.assertFalse(os.path.exists(layerpath), '%s should not exist at this point in time' % layerpat… 103 result = runCmd('bitbake-layers create-layer --priority=%d %s' % (priority, layerpath)) 104 self.track_for_cleanup(layerpath) 105 result = runCmd('bitbake-layers add-layer %s' % layerpath) 106 self.add_command_to_tearDown('bitbake-layers remove-layer %s' % layerpath) 108 …find_in_contents = re.search(re.escape(layername) + r'\s+' + re.escape(layerpath) + r'\s+' + re.es… 123 result = runCmd('bitbake-layers save-build-conf {} {}'.format(layerpath, "buildconf-1")) 125 fullpath = os.path.join(layerpath, "conf", "templates", "buildconf-1", f)
|
H A D | devtool.py | 40 def bblayers_edit_cb(layerpath, canonical_layerpath): argument 47 edited_layers.append(layerpath) 48 oldmetapath = os.path.realpath(layerpath) 86 return layerpath 92 def bblayers_edit_cb(layerpath, canonical_layerpath): argument 94 edited_layers.append(layerpath) 97 return layerpath
|
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/ |
H A D | localhostbecontroller.py | 254 layerpath = os.path.join(self.be.builddir, 259 path = os.path.join(layerpath, name) 264 config = os.path.join(layerpath, "conf", "layer.conf") 297 recipe_path = os.path.join(layerpath, "recipes", "%s.bb" % 303 customrecipe.layer_version.dirpath = layerpath 304 customrecipe.layer_version.layer.local_source_dir = layerpath 311 return layerpath
|
/openbmc/openbmc/poky/meta/lib/bblayers/ |
H A D | buildconf.py | 66 if os.path.abspath(l[0]) == os.path.abspath(args.layerpath): 72 …("Layer {} not in one of the currently enabled layers:\n{}".format(args.layerpath, "\n".join([l[0]…
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/ |
H A D | api.py | 655 layerpath = os.path.join(be.builddir, 658 path = os.path.join(layerpath, name) 662 config = os.path.join(layerpath, "conf", "layer.conf") 667 recipe_path = os.path.join(layerpath, "recipes", "%s.bb" %
|
/openbmc/openbmc/poky/scripts/esdk-tools/ |
H A D | devtool | 138 if args.layerpath: 139 workspacedir = os.path.abspath(args.layerpath) 323 parser_create_workspace.add_argument('layerpath', nargs='?', help='Path in which the workspace layer should be created')
|
/openbmc/openbmc/poky/scripts/ |
H A D | devtool | 138 if args.layerpath: 139 workspacedir = os.path.abspath(args.layerpath)
|
/openbmc/openbmc/poky/bitbake/lib/bb/parse/ |
H A D | ast.py | 359 for layerpath in layers.split(): 360 candidate_fragment_path = os.path.join(layerpath, full_fragment_name)
|