Home
last modified time | relevance | path

Searched refs:manifest_dir (Results 1 – 11 of 11) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dmanifest.py59 def __init__(self, d, manifest_dir=None, manifest_type=MANIFEST_TYPE_IMAGE): argument
63 if manifest_dir is None:
65 self.manifest_dir = self.d.getVar('SDK_DIR')
67 self.manifest_dir = self.d.getVar('WORKDIR')
69 self.manifest_dir = manifest_dir
71 bb.utils.mkdirhier(self.manifest_dir)
73 … self.initial_manifest = os.path.join(self.manifest_dir, "%s_initial_manifest" % manifest_type)
74 self.final_manifest = os.path.join(self.manifest_dir, "%s_final_manifest" % manifest_type)
75 self.full_manifest = os.path.join(self.manifest_dir, "%s_full_manifest" % manifest_type)
192 def create_manifest(d, final_manifest=False, manifest_dir=None, argument
[all …]
H A Dsdk.py13 def __init__(self, d, manifest_dir): argument
23 if manifest_dir is None:
24 self.manifest_dir = self.d.getVar("SDK_DIR")
26 self.manifest_dir = manifest_dir
127 def populate_sdk(d, manifest_dir=None): argument
133 cls.PkgSdk(d, manifest_dir).populate()
H A Drootfs.py370 def variable_depends(d, manifest_dir=None): argument
375 def create_rootfs(d, manifest_dir=None, progress_reporter=None, logcatcher=None): argument
381 cls(d, manifest_dir, progress_reporter, logcatcher).create()
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/rpm/
H A Dsdk.py13 def __init__(self, d, manifest_dir=None, rpm_workdir="oe-sdk-repo"): argument
14 super(PkgSdk, self).__init__(d, manifest_dir)
16 self.target_manifest = PkgManifest(d, self.manifest_dir,
18 self.host_manifest = PkgManifest(d, self.manifest_dir,
H A Drootfs.py12 def __init__(self, d, manifest_dir, progress_reporter=None, logcatcher=None): argument
18 self.manifest = PkgManifest(d, manifest_dir)
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/deb/
H A Dsdk.py14 def __init__(self, d, manifest_dir=None): argument
15 super(PkgSdk, self).__init__(d, manifest_dir)
21 self.target_manifest = PkgManifest(d, self.manifest_dir,
23 self.host_manifest = PkgManifest(d, self.manifest_dir,
H A Drootfs.py124 def __init__(self, d, manifest_dir, progress_reporter=None, logcatcher=None): argument
134 self.manifest = PkgManifest(d, manifest_dir)
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/ipk/
H A Dsdk.py14 def __init__(self, d, manifest_dir=None): argument
15 super(PkgSdk, self).__init__(d, manifest_dir)
26 self.target_manifest = PkgManifest(d, self.manifest_dir,
28 self.host_manifest = PkgManifest(d, self.manifest_dir,
H A Drootfs.py125 def __init__(self, d, manifest_dir, progress_reporter=None, logcatcher=None): argument
129 self.manifest = PkgManifest(d, manifest_dir)
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dpopulate_sdk_base.bbclass175 create_manifest(d, manifest_dir=d.getVar('SDK_DIR'),
177 create_manifest(d, manifest_dir=d.getVar('SDK_DIR'),
H A Dsstate.bbclass587 manifest_dir = d.getVar('SSTATE_MANIFESTS')
588 if not os.path.exists(manifest_dir):