Home
last modified time | relevance | path

Searched refs:manifest (Results 1 – 25 of 148) sorted by relevance

123456

/openbmc/openbmc/poky/meta/lib/oe/
H A Dmanifest.py114 with open(self.initial_manifest, "w+") as manifest:
115 manifest.write(self.initial_manifest_file_header)
119 manifest.write("%s,%s\n" % (pkg_type, pkg))
152 with open(self.initial_manifest) as manifest:
153 for line in manifest.read().split('\n'):
186 with open(self.full_manifest, 'r') as manifest:
187 for pkg in manifest.read().split('\n'):
197manifest = importlib.import_module('oe.package_manager.' + d.getVar('IMAGE_PKGTYPE') + '.manifest'…
200 manifest.create_final()
202 manifest.create_initial()
H A Dnpm_registry.py163 with Manifest(base, pkg_json) as manifest:
164 meta = manifest.load()
169 manifest.save(meta)
174 self.__cache.run('meta', self._meta_uri(pkg_json), manifest.filename);
H A Dlicense.py220 manifest = ManifestVisitor(dont_want_licenses, canonical_license, d)
223 elements = manifest.get_elements(licensestr)
229 manifest.visit_elements(elements)
234 manifest.licensestr = manifest.licensestr.replace('[', '(').replace(']', ')')
236 return (manifest.licensestr, manifest.licenses)
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Drepo.py40 ud.manifest = ud.parm.get('manifest', 'default.xml')
41 if not ud.manifest.endswith('.xml'):
42 ud.manifest += '.xml'
44 …= d.expand("repo_%s%s_%s_%s.tar.gz" % (ud.host, ud.path.replace("/", "."), ud.manifest, ud.branch))
55 codir = os.path.join(repodir, gitsrcname, ud.manifest)
65 …etwork_access(d, "%s init -m %s -b %s -u %s://%s%s%s" % (ud.basecmd, ud.manifest, ud.branch, ud.pr…
66 …runfetchcmd("%s init -m %s -b %s -u %s://%s%s%s" % (ud.basecmd, ud.manifest, ud.branch, ud.proto, …
84 return ud.manifest
/openbmc/openbmc/poky/meta/lib/oe/package_manager/ipk/
H A Dmanifest.py7 from oe.manifest import Manifest
36 with open(self.initial_manifest, "w+") as manifest:
37 manifest.write(self.initial_manifest_file_header)
51 manifest.write("%s,%s\n" % (pkg_type, pkg))
69 with open(self.full_manifest, 'w+') as manifest:
74 manifest.write(m.group(1) + '\n')
H A Drootfs.py11 from oe.manifest import Manifest
13 from oe.package_manager.ipk.manifest import PkgManifest
131 self.manifest = PkgManifest(d, manifest_dir)
230 old_full_manifest = self.manifest.parse_full_manifest()
234 self.manifest.create_full(self.pm)
237 new_full_manifest = self.manifest.parse_full_manifest()
276 pkgs_to_install = self.manifest.parse_initial_manifest()
H A Dsdk.py11 from oe.package_manager.ipk.manifest import PkgManifest
12 from oe.manifest import Manifest
45 def _populate_sysroot(self, pm, manifest): argument
46 pkgs_to_install = manifest.parse_initial_manifest()
/openbmc/openbmc/poky/meta/lib/oe/package_manager/deb/
H A Dmanifest.py7 from oe.manifest import Manifest
11 with open(self.initial_manifest, "w+") as manifest:
12 manifest.write(self.initial_manifest_file_header)
21 manifest.write("%s,%s\n" %
H A Dsdk.py11 from oe.manifest import Manifest
13 from oe.package_manager.deb.manifest import PkgManifest
51 def _populate_sysroot(self, pm, manifest): argument
52 pkgs_to_install = manifest.parse_initial_manifest()
H A Drootfs.py10 from oe.manifest import Manifest
12 from oe.package_manager.deb.manifest import PkgManifest
136 self.manifest = PkgManifest(d, manifest_dir)
143 pkgs_to_install = self.manifest.parse_initial_manifest()
/openbmc/openbmc/poky/meta/lib/oe/package_manager/rpm/
H A Dmanifest.py7 from oe.manifest import Manifest
35 with open(self.initial_manifest, "w+") as manifest:
36 manifest.write(self.initial_manifest_file_header)
50 manifest.write("%s,%s\n" % (pkg_type, pkg))
H A Drootfs.py8 from oe.manifest import Manifest
10 from oe.package_manager.rpm.manifest import PkgManifest
20 self.manifest = PkgManifest(d, manifest_dir)
67 pkgs_to_install = self.manifest.parse_initial_manifest()
H A Dsdk.py10 from oe.manifest import Manifest
11 from oe.package_manager.rpm.manifest import PkgManifest
43 def _populate_sysroot(self, pm, manifest): argument
44 pkgs_to_install = manifest.parse_initial_manifest()
/openbmc/openbmc/poky/meta/recipes-devtools/python/python3/
H A Dcreate_manifest3.py87 with open(json_manifest, 'r+') as manifest:
88 json_contents = manifest.read()
89 manifest.seek(0, 0)
90 manifest.write(comments + json_contents)
99 with open('python3-manifest.json') as manifest:
101 manifest_str = manifest.read()
103 manifest.seek(0)
104 comments = manifest.read(json_start)
105 manifest_str = manifest.read()
H A Dpython3-manifest.json15 # Modify the python3-manifest.json file, and add the required file(s) to the FILES list,
28 # We run $ bitbake python3 -c create_manifest and the resulting manifest
42 # old manifest, all of these issues would cause runtime errors on our system.
49 # This will automatically replace your manifest file located under the Python directory
58 # After running the task, the new manifest will have the sha3*.so file on more than one
67 # because it is used as base to build the manifest file, you need to manually check log.do_c…
75 # What will happen here is that the new manifest would not be aware that the _uuid module ex…
82 # detected correctly along with its dependencies, and we will get a working manifest.
/openbmc/openbmc/poky/meta/lib/oeqa/sdk/
H A Dcontext.py33 def _hasPackage(self, manifest, pkg, regex=False): argument
37 for p in manifest.keys():
42 if pkg in manifest.keys():
91 def _load_manifest(manifest): argument
93 if manifest:
94 with open(manifest) as f:
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dlicense_image.bbclass28 with open(os.path.join(license_image_dir, 'package.manifest'), "w+") as package_manifest:
52 d.getVar('SSTATE_PKGARCH'), d.getVar('IMAGE_NAME'), 'license.manifest')
84 # Rootfs manifest
96 # Image manifest
122 # - Just copy the manifest
123 # - Copy the manifest and the license directories
201 Write the license manifest for the deployed recipes.
215 # It is necessary to mark this will be used for image manifest
235 image_license_manifest = os.path.join(lic_manifest_dir, 'image_license.manifest')
267 # The manifest file name contains the arch. Because we are not running
[all …]
H A Dbaremetal-image.bbclass33 IMAGE_OUTPUT_MANIFEST_DIR = "${WORKDIR}/deploy-image-output-manifest"
34 IMAGE_OUTPUT_MANIFEST = "${IMAGE_OUTPUT_MANIFEST_DIR}/manifest.json"
71 # Write empty manifest file to satisfy test infrastructure
78 manifest_link = deploy_dir + "/" + link_name + ".manifest"
92 # Assure binaries, manifest and qemubootconf are populated on DEPLOY_DIR_IMAGE
/openbmc/openbmc/poky/meta/classes-global/
H A Dpackage_pkgdata.bbclass21 … for manifest in glob.glob(d.expand("${SSTATE_MANIFESTS}/manifest-%s-*.packagedata" % pkgarch)):
22 with open(manifest, "r") as f:
152manifest, d2 = oe.sstatesig.find_sstate_manifest(c, setscenedeps[dep][2], "packagedata", d, multil…
155 if manifest:
157 with open(manifest, "r") as f:
158 manifests[dep] = manifest
H A Dstaging.bbclass211 …for manifest in glob.glob(d.expand("${SSTATE_MANIFESTS}/manifest-%s-*.populate_sysroot" % pkgarch)…
212 if manifest.endswith("-initial.populate_sysroot"):
215 … if not native and (manifest.endswith("-native.populate_sysroot") or "nativesdk-" in manifest):
217 … native and not (manifest.endswith("-native.populate_sysroot") or manifest.endswith("-cross.popula…
219 tmanifest = targetdir + "/" + os.path.basename(manifest)
223 os.link(manifest, tmanifest)
226 bb.utils.copyfile(manifest, tmanifest)
229 with open(manifest, "r") as f:
541manifest, d2 = oe.sstatesig.find_sstate_manifest(c, setscenedeps[dep][2], "populate_sysroot", d, m…
548 if manifest and "allarch" in manifest:
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/
H A Dcontext.py190 def readPackagesManifest(manifest): argument
191 if not manifest or not os.path.exists(manifest):
192 raise OSError("Manifest file not exists: %s" % manifest)
195 with open(manifest, 'r') as f:
/openbmc/openbmc/meta-phosphor/classes/
H A Dimage_types_phosphor.bbclass468 manifest = {
469 "type": "phosphor-image-manifest",
480 "manifest-sha256": "",
484 manifest["info"]["extended-version"] = extended_version
487 manifest["info"]["compatible-names"] = compatible_names.split()
490 "phosphor-image-manifest.json")
496 manifest["partitions"].append(
506 manifest["partitions"][-1]["num-nodes"] = 1
508 manifest["partitions"][-1]["num-nodes"] = 3
512 manifest["partitions"][-1]["sha256"] = sha256_value
[all …]
/openbmc/openbmc/poky/scripts/contrib/
H A Dimage-manifest42 def get_pkg_list(manifest): argument
44 with open(manifest, 'r') as f:
56 pkglist = get_pkg_list(args.manifest)
78 def get_recipe_list(manifest, tinfoil): argument
79 pkglist = get_pkg_list(manifest)
94 recipelist = get_recipe_list(args.manifest, tinfoil)
327 shutil.copy2(args.manifest,os.path.join(tmpoutdir, "manifest"))
333 pkglist = get_pkg_list(args.manifest)
425 outname = os.path.splitext(os.path.basename(args.manifest))[0]
/openbmc/openbmc/meta-arm/meta-arm/recipes-bsp/trusted-firmware-a/files/
H A D0001-Add-spmc_manifest-for-qemu.patch9 - The SPMC manifest is integration specific and should live at an
10 integration spcific place. The manifest file is processed by TF-A
33 + compatible = "arm,ffa-core-manifest-1.0";
/openbmc/phosphor-psu-code-mgmt/src/
H A Ditem_updater.cpp479 auto manifest = modelDir / MANIFEST_FILE; in scanDirectory() local
480 if (!fs::exists(manifest)) in scanDirectory()
483 std::format("Manifest file does not exist: {}", manifest.c_str())}; in scanDirectory()
485 if (!fs::is_regular_file(manifest)) in scanDirectory()
488 std::format("Path is not a file: {}", manifest.c_str())}; in scanDirectory()
493 manifest.string(), {MANIFEST_VERSION, MANIFEST_EXTENDED_VERSION}); in scanDirectory()
504 manifest.c_str(), version, model)}; in scanDirectory()

123456