/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | manifest.py | 114 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'): 197 …manifest = importlib.import_module('oe.package_manager.' + d.getVar('IMAGE_PKGTYPE') + '.manifest'… 200 manifest.create_final() 202 manifest.create_initial()
|
H A D | npm_registry.py | 163 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 D | license.py | 220 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 D | repo.py | 40 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 D | manifest.py | 7 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 D | rootfs.py | 11 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 D | sdk.py | 11 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 D | manifest.py | 7 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 D | sdk.py | 11 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 D | rootfs.py | 10 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 D | manifest.py | 7 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 D | rootfs.py | 8 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 D | sdk.py | 10 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 D | create_manifest3.py | 87 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 D | python3-manifest.json | 15 # 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 D | context.py | 33 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 D | license_image.bbclass | 28 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 D | baremetal-image.bbclass | 33 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 D | package_pkgdata.bbclass | 21 … for manifest in glob.glob(d.expand("${SSTATE_MANIFESTS}/manifest-%s-*.packagedata" % pkgarch)): 22 with open(manifest, "r") as f: 152 …manifest, 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 D | staging.bbclass | 211 …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: 541 …manifest, 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 D | context.py | 190 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 D | image_types_phosphor.bbclass | 468 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 D | image-manifest | 42 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 D | 0001-Add-spmc_manifest-for-qemu.patch | 9 - 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 D | item_updater.cpp | 479 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()
|