Home
last modified time | relevance | path

Searched refs:varvalues (Results 1 – 3 of 3) sorted by relevance

/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dsetvar.py39 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 Dutils.py166 def _testeditfile(self, varvalues, compareto, dummyvars=None): argument
175 … self.assertIn(varname, varvalues, 'Callback called for variable %s not in the list!' % varname)
178 return varvalues[varname]
180 bb.utils.edit_metadata_file(tf.name, varvalues.keys(), handle_file)
187 self.assertEqual(sorted(varvalues.keys()), sorted(varcalls + dummyvars))
390 valueitem = varvalues.get(varname, None)
396 varvalues = {'HELLO': ('hithere', None, 0, True), 'THIS': ('that', '+=', 0, True)}
/openbmc/openbmc/poky/meta/lib/oe/
H A Drecipeutils.py337 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}