Home
last modified time | relevance | path

Searched refs:RecipeHandler (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/
H A Dcreate_buildsys.py11 from recipetool.create import RecipeHandler, validate_pv
28 class CmakeRecipeHandler(RecipeHandler):
33 if RecipeHandler.checkfiles(srctree, ['CMakeLists.txt']):
61 srcfiles = RecipeHandler.checkfiles(srctree, ['CMakeLists.txt'])
151 RecipeHandler.load_devel_filemap(tinfoil.config_data)
152 for fn, pn in RecipeHandler.recipecmakefilemap.items():
269 RecipeHandler.handle_depends(libdeps, pcdeps, deps, outlines, values, tinfoil.config_data)
304 class SconsRecipeHandler(RecipeHandler):
309 if RecipeHandler.checkfiles(srctree, ['SConstruct', 'Sconstruct', 'sconstruct']):
319 class QmakeRecipeHandler(RecipeHandler):
[all …]
H A Dcreate_kmod.py10 from recipetool.create import RecipeHandler, read_pkgconfig_provides, validate_pv
21 class KernelModuleRecipeHandler(RecipeHandler):
33 …files = RecipeHandler.checkfiles(srctree, ['*.c', '*.h'], recursive=True, excludedirs=['contrib', …
H A Dcreate.py46 class RecipeHandler(object): class
60 if RecipeHandler.recipelibmap:
89 RecipeHandler.recipelibmap[libname] = line.split(':', 1)[-1].strip()
98 RecipeHandler.recipelibmap['GL'] = 'virtual/libgl'
99 RecipeHandler.recipelibmap['EGL'] = 'virtual/egl'
100 RecipeHandler.recipelibmap['GLESv2'] = 'virtual/libgles2'
105 if RecipeHandler.recipeheadermap:
128 RecipeHandler.recipeheadermap[header] = pn
131 RecipeHandler.recipecmakefilemap[fn] = pn
136 if RecipeHandler.recipebinmap:
[all …]
H A Dcreate_kernel.py10 from recipetool.create import RecipeHandler, read_pkgconfig_provides, validate_pv
21 class KernelRecipeHandler(RecipeHandler):
H A Dcreate_npm.py17 from recipetool.create import RecipeHandler
30 class NpmRecipeHandler(RecipeHandler):
165 files = RecipeHandler.checkfiles(srctree, ["package.json"])
H A Dcreate_buildsys_python.py21 from recipetool.create import RecipeHandler
33 class PythonRecipeHandler(RecipeHandler):
174 setupfiles = RecipeHandler.checkfiles(srctree, ['setup.py'])
231 elif RecipeHandler.checkfiles(srctree, ['PKG-INFO']):
/OK3568_Linux_fs/yocto/meta-qt5/lib/recipetool/
H A Dcreate_qt5.py21 from recipetool.create import RecipeHandler
73 class Qmake5RecipeHandler(RecipeHandler):
115 files = RecipeHandler.checkfiles(srctree, ['*.pro'])
144 … subfiles = RecipeHandler.checkfiles(os.path.join(os.path.dirname(fn), item), ['*.pro'])