Searched refs:varvalues (Results 1 – 3 of 3) sorted by relevance
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | setvar.py | 39 varvalues = {args.varname: value} 42 patches = [oe.recipeutils.patch_recipe_file(args.recipefile, varvalues, patch=args.patch)] 47 patches = oe.recipeutils.patch_recipe(rd, args.recipefile, varvalues, patch=args.patch)
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | utils.py | 174 def _testeditfile(self, varvalues, compareto, dummyvars=None): argument 183 … self.assertIn(varname, varvalues, 'Callback called for variable %s not in the list!' % varname) 186 return varvalues[varname] 188 bb.utils.edit_metadata_file(tf.name, varvalues.keys(), handle_file) 195 self.assertEqual(sorted(varvalues.keys()), sorted(varcalls + dummyvars)) 398 valueitem = varvalues.get(varname, None) 404 varvalues = {'HELLO': ('hithere', None, 0, True), 'THIS': ('that', '+=', 0, True)}
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | recipeutils.py | 337 def patch_recipe(d, fn, varvalues, patch=False, relpath='', redirect_output=None): argument 351 varlist = varvalues.keys() 357 vals = {k: varvalues[k] for k in v}
|