Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/meta/lib/oe/
H A Dmanifest.py61 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 Dsdk.py15 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 Drootfs.py397 def variable_depends(d, manifest_dir=None): argument
402 def create_rootfs(d, manifest_dir=None, progress_reporter=None, logcatcher=None): argument
408 cls(d, manifest_dir, progress_reporter, logcatcher).create()
/openbmc/openbmc/poky/meta/lib/oe/package_manager/deb/
H A Dsdk.py16 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 Drootfs.py126 def __init__(self, d, manifest_dir, progress_reporter=None, logcatcher=None): argument
136 self.manifest = PkgManifest(d, manifest_dir)
/openbmc/openbmc/poky/meta/lib/oe/package_manager/rpm/
H A Dsdk.py15 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 Drootfs.py14 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/ipk/
H A Dsdk.py16 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 Drootfs.py127 def __init__(self, d, manifest_dir, progress_reporter=None, logcatcher=None): argument
131 self.manifest = PkgManifest(d, manifest_dir)
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dptest-cargo.bbclass20 manifest_dir = os.path.dirname(manifest_path)
56 if common_path in [manifest_dir, current_manifest_path]:
H A Dpopulate_sdk_base.bbclass199 create_manifest(d, manifest_dir=d.getVar('SDK_DIR'),
201 create_manifest(d, manifest_dir=d.getVar('SDK_DIR'),
/openbmc/openbmc/poky/meta/classes-global/
H A Dsstate.bbclass575 manifest_dir = d.getVar('SSTATE_MANIFESTS')
576 if not os.path.exists(manifest_dir):