| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | manifest.py | 59 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 D | sdk.py | 13 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 D | rootfs.py | 370 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 D | sdk.py | 13 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 D | rootfs.py | 12 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 D | sdk.py | 14 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 D | rootfs.py | 124 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 D | sdk.py | 14 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 D | rootfs.py | 125 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 D | populate_sdk_base.bbclass | 175 create_manifest(d, manifest_dir=d.getVar('SDK_DIR'), 177 create_manifest(d, manifest_dir=d.getVar('SDK_DIR'),
|
| H A D | sstate.bbclass | 587 manifest_dir = d.getVar('SSTATE_MANIFESTS') 588 if not os.path.exists(manifest_dir):
|