Searched refs:extrafiles (Results 1 – 4 of 4) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | process.py | 75 def _logged_communicate(pipe, log, input, extrafiles): argument 90 for fobj, _ in extrafiles: 95 for fobj, func in extrafiles: 158 def run(cmd, input=None, log=None, extrafiles=None, **options): argument 162 if not extrafiles: 163 extrafiles = [] 177 stdout, stderr = _logged_communicate(pipe, log, input, extrafiles)
|
H A D | build.py | 529 … bb.process.run(cmd, shell=False, stdin=stdin, log=logfile, extrafiles=[(fifo,readfifo)])
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | kernel-yocto.bbclass | 105 extrafiles = [] 111 if path + ":True" not in extrafiles: 112 extrafiles.append(path + ":" + str(os.path.exists(path))) 114 return " ".join(extrafiles)
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create.py | 764 extrafiles = extravalues.pop('extrafiles', {}) 820 if extrafiles: 826 for destfn, extrafile in extrafiles.items():
|