/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create_npm.py | 38 def _handle_registry(varname, origvalue, op, newlines): argument 40 if origvalue.startswith("npm://"): 41 registry = re.sub(r"^npm://", "http://", origvalue.split(";")[0]) 42 return origvalue, None, 0, True 261 def _handle_srcuri(varname, origvalue, op, newlines): argument 263 value = origvalue.replace("version=" + data["version"], "version=${PV}")
|
H A D | create_kernel.py | 35 def handle_var(varname, origvalue, op, newlines): argument 80 return origvalue, op, 0, True
|
H A D | create_go.py | 738 def varfunc(varname, origvalue, op, newlines): argument 741 licenses = origvalue.split('\\') 757 return origvalue, None, 0, True 765 def varfunc(varname, origvalue, op, newlines): argument 770 return origvalue, None, 0, True
|
/openbmc/openbmc/poky/meta/lib/bbconfigbuild/ |
H A D | configfragments.py | 105 def enable_helper(varname, origvalue, op, newlines): argument 106 enabled_fragments = origvalue.split() 125 def disable_helper(varname, origvalue, op, newlines): argument 126 enabled_fragments = origvalue.split() 141 def disable_all_helper(varname, origvalue, op, newlines): argument
|
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | __init__.py | 283 def get_bbclassextend_varfunc(varname, origvalue, op, newlines): argument 284 values[varname] = origvalue 285 return origvalue, None, 0, True 353 def get_unlockedsigs_varfunc(varname, origvalue, op, newlines): argument 354 values[varname] = origvalue 355 return origvalue, None, 0, True
|
H A D | build.py | 23 def varfunc(varname, origvalue, op, newlines): argument 24 newvalue = values.get(varname, origvalue)
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | utils.py | 182 def handle_file(varname, origvalue, op, newlines): argument 392 def handle_var(varname, origvalue, op, newlines): argument 402 return (origvalue, op, 0, True) 420 def handle_var(varname, origvalue, op, newlines): argument 422 value_in_callback = origvalue 423 return (origvalue, op, -1, False)
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | recipeutils.py | 235 def patch_recipe_varfunc(varname, origvalue, op, newlines): argument 252 return origvalue, None, 0, True 842 def appendfile_varfunc(varname, origvalue, op, newlines): argument 844 if origvalue.startswith('${THISDIR}/'): 846 … extvars['destsubdir'] = rd.expand(origvalue.split('${THISDIR}/', 1)[1].rstrip(':')) 854 instfunclines = [line.strip() for line in origvalue.strip('\n').splitlines()] 860 splitval = split_var_value(origvalue, assignment=False) 904 return (origvalue, None, 4, False)
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | utils.py | 1491 def handle_bblayers_firstpass(varname, origvalue, op, newlines): argument 1495 orig_bblayers.extend([canonicalise_path(x) for x in origvalue.split()]) 1496 return (origvalue, None, 2, False) 1498 def handle_bblayers(varname, origvalue, op, newlines): argument 1500 bblayers = [remove_trailing_sep(x) for x in origvalue.split()] 1532 return (origvalue, None, 2, False)
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | populate_sdk_ext.bbclass | 311 def handle_var(varname, origvalue, op, newlines): 312 …if varname in local_conf_remove or (origvalue.strip().startswith('/') and not varname in local_con… 317 env_passthrough_values[varname] = origvalue 318 return origvalue, op, 0, True
|