Home
last modified time | relevance | path

Searched refs:manifest (Results 1 – 25 of 135) 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 Dlicense.py219 manifest = ManifestVisitor(dont_want_licenses, canonical_license, d)
222 elements = manifest.get_elements(licensestr)
228 manifest.visit_elements(elements)
233 manifest.licensestr = manifest.licensestr.replace('[', '(').replace(']', ')')
235 return (manifest.licensestr, manifest.licenses)
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);
/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 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()
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()
/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/linux/Documentation/devicetree/bindings/gpu/host1x/
H A Dnvidia,tegra234-nvdec.yaml70 nvidia,bl-manifest-offset:
73 Offset to bootloader manifest from beginning of firmware that was configured by
88 nvidia,os-manifest-offset:
91 Offset to operating system manifest from beginning of firmware that was configured by
115 - nvidia,bl-manifest-offset
118 - nvidia,os-manifest-offset
150 nvidia,bl-manifest-offset = <0>;
153 nvidia,os-manifest-offset = <0>;
/openbmc/openbmc/poky/meta/lib/oeqa/sdk/
H A Dcontext.py26 def _hasPackage(self, manifest, pkg, regex=False): argument
30 for p in manifest.keys():
35 if pkg in manifest.keys():
88 def _load_manifest(manifest): argument
90 if manifest:
91 with open(manifest) as f:
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dlicense_image.bbclass84 # 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
267 # The manifest file name contains the arch. Because we are not running
274 "manifest-%s-%s.deploy" % (arch, dep))
284 Get the files deployed from the sstate manifest
289 with open(man_file, "r") as manifest:
[all …]
/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…
223 os.link(manifest, tmanifest)
226 bb.utils.copyfile(manifest, tmanifest)
229 with open(manifest, "r") as f:
548 if manifest and "allarch" in manifest:
555 if manifest:
564 with open(manifest, "r") as f:
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/
H A Dcontext.py187 def readPackagesManifest(manifest): argument
188 if not manifest or not os.path.exists(manifest):
189 raise OSError("Manifest file not exists: %s" % manifest)
192 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": "",
496 manifest["partitions"].append(
506 manifest["partitions"][-1]["num-nodes"] = 1
508 manifest["partitions"][-1]["num-nodes"] = 3
551 _add_manifest("manifest", "json",
575 manifest_raw = json.dumps(manifest, indent=4)
577 manifest["manifest-sha256"] = hashlib.sha256(
580 # Write the final manifest json and add it to the image.
[all …]
/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/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-security/trusted-services/
H A Dts-sp-common.inc13 SP_DTS_FILE ?= "${D}${TS_INSTALL}/manifest/${SP_UUID}.dts"
17 dtc -I dts -O dtb -o ${D}${TS_INSTALL}/manifest/${SP_UUID}.dtb ${SP_DTS_FILE}

123456