Home
last modified time | relevance | path

Searched refs:origvalue (Results 1 – 8 of 8) sorted by relevance

/OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/
H A Dcreate_npm.py47 def _handle_registry(varname, origvalue, op, newlines): argument
49 if origvalue.startswith("npm://"):
50 registry = re.sub(r"^npm://", "http://", origvalue.split(";")[0])
51 return origvalue, None, 0, True
240 def _handle_srcuri(varname, origvalue, op, newlines): argument
242 value = origvalue.replace("version=" + data["version"], "version=${PV}")
H A Dcreate_kernel.py35 def handle_var(varname, origvalue, op, newlines): argument
80 return origvalue, op, 0, True
/OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/
H A D__init__.py258 def get_bbclassextend_varfunc(varname, origvalue, op, newlines): argument
259 values[varname] = origvalue
260 return origvalue, None, 0, True
328 def get_unlockedsigs_varfunc(varname, origvalue, op, newlines): argument
329 values[varname] = origvalue
330 return origvalue, None, 0, True
H A Dbuild.py23 def varfunc(varname, origvalue, op, newlines): argument
24 newvalue = values.get(varname, origvalue)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Dutils.py174 def handle_file(varname, origvalue, op, newlines): argument
384 def handle_var(varname, origvalue, op, newlines): argument
394 return (origvalue, op, 0, True)
412 def handle_var(varname, origvalue, op, newlines): argument
414 value_in_callback = origvalue
415 return (origvalue, op, -1, False)
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Drecipeutils.py235 def patch_recipe_varfunc(varname, origvalue, op, newlines): argument
252 return origvalue, None, 0, True
811 def appendfile_varfunc(varname, origvalue, op, newlines): argument
813 if origvalue.startswith('${THISDIR}/'):
815 … extvars['destsubdir'] = rd.expand(origvalue.split('${THISDIR}/', 1)[1].rstrip(':'))
823 instfunclines = [line.strip() for line in origvalue.strip('\n').splitlines()]
829 splitval = split_var_value(origvalue, assignment=False)
873 return (origvalue, None, 4, False)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dutils.py1444 def handle_bblayers_firstpass(varname, origvalue, op, newlines): argument
1448 orig_bblayers.extend([canonicalise_path(x) for x in origvalue.split()])
1449 return (origvalue, None, 2, False)
1451 def handle_bblayers(varname, origvalue, op, newlines): argument
1453 bblayers = [remove_trailing_sep(x) for x in origvalue.split()]
1485 return (origvalue, None, 2, False)
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dpopulate_sdk_ext.bbclass299 def handle_var(varname, origvalue, op, newlines):
300 …if varname in local_conf_remove or (origvalue.strip().startswith('/') and not varname in local_con…
305 env_passthrough_values[varname] = origvalue
306 return origvalue, op, 0, True