/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | manifest.py | 61 def __init__(self, d, manifest_dir=None, manifest_type=MANIFEST_TYPE_IMAGE): argument 65 if manifest_dir is None: 67 self.manifest_dir = self.d.getVar('SDK_DIR') 69 self.manifest_dir = self.d.getVar('WORKDIR') 71 self.manifest_dir = manifest_dir 73 bb.utils.mkdirhier(self.manifest_dir) 75 … self.initial_manifest = os.path.join(self.manifest_dir, "%s_initial_manifest" % manifest_type) 76 self.final_manifest = os.path.join(self.manifest_dir, "%s_final_manifest" % manifest_type) 77 self.full_manifest = os.path.join(self.manifest_dir, "%s_full_manifest" % manifest_type) 194 def create_manifest(d, final_manifest=False, manifest_dir=None, argument [all …]
|
H A D | sdk.py | 15 def __init__(self, d, manifest_dir): argument 25 if manifest_dir is None: 26 self.manifest_dir = self.d.getVar("SDK_DIR") 28 self.manifest_dir = manifest_dir 129 def populate_sdk(d, manifest_dir=None): argument 135 cls.PkgSdk(d, manifest_dir).populate()
|
H A D | rootfs.py | 401 def variable_depends(d, manifest_dir=None): argument 406 def create_rootfs(d, manifest_dir=None, progress_reporter=None, logcatcher=None): argument 412 cls(d, manifest_dir, progress_reporter, logcatcher).create()
|
/openbmc/openbmc/poky/meta/lib/oe/package_manager/ipk/ |
H A D | sdk.py | 16 def __init__(self, d, manifest_dir=None): argument 17 super(PkgSdk, self).__init__(d, manifest_dir) 28 self.target_manifest = PkgManifest(d, self.manifest_dir, 30 self.host_manifest = PkgManifest(d, self.manifest_dir,
|
H A D | rootfs.py | 127 def __init__(self, d, manifest_dir, progress_reporter=None, logcatcher=None): argument 131 self.manifest = PkgManifest(d, manifest_dir)
|
/openbmc/openbmc/poky/meta/lib/oe/package_manager/rpm/ |
H A D | sdk.py | 15 def __init__(self, d, manifest_dir=None, rpm_workdir="oe-sdk-repo"): argument 16 super(PkgSdk, self).__init__(d, manifest_dir) 18 self.target_manifest = PkgManifest(d, self.manifest_dir, 20 self.host_manifest = PkgManifest(d, self.manifest_dir,
|
H A D | rootfs.py | 14 def __init__(self, d, manifest_dir, progress_reporter=None, logcatcher=None): argument 20 self.manifest = PkgManifest(d, manifest_dir)
|
/openbmc/openbmc/poky/meta/lib/oe/package_manager/deb/ |
H A D | sdk.py | 16 def __init__(self, d, manifest_dir=None): argument 17 super(PkgSdk, self).__init__(d, manifest_dir) 23 self.target_manifest = PkgManifest(d, self.manifest_dir, 25 self.host_manifest = PkgManifest(d, self.manifest_dir,
|
H A D | rootfs.py | 126 def __init__(self, d, manifest_dir, progress_reporter=None, logcatcher=None): argument 136 self.manifest = PkgManifest(d, manifest_dir)
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | ptest-cargo.bbclass | 20 manifest_dir = os.path.dirname(manifest_path) 56 if common_path in [manifest_dir, current_manifest_path]:
|
H A D | populate_sdk_base.bbclass | 245 create_manifest(d, manifest_dir=d.getVar('SDK_DIR'), 247 create_manifest(d, manifest_dir=d.getVar('SDK_DIR'),
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | sstate.bbclass | 571 manifest_dir = d.getVar('SSTATE_MANIFESTS') 572 if not os.path.exists(manifest_dir):
|