Home
last modified time | relevance | path

Searched full:manifest (Results 1 – 25 of 307) sorted by relevance

12345678910>>...13

/openbmc/openbmc/poky/meta/lib/oe/
H A Dmanifest.py12 class Manifest(object, metaclass=ABCMeta): class
86 This creates a standard initial manifest for core-image-(minimal|sato|sato-sdk).
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))
122 This will create the initial manifest which will be used by Rootfs class to
130 This creates the manifest after everything has been installed.
137 This creates the manifest after the package in initial manifest has been
146 The following function parses an initial manifest and returns a dictionary
152 with open(self.initial_manifest) as manifest:
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/
H A DManifest_v1.xml4 <!--# Redfish Schema: Manifest v1.1.2 -->
23 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Manifest">
27 <ComplexType Name="Manifest" Abstract="true">
29 …escription" String="This type describes a manifest containing a set of requests to be fulfilled. …
30 …<Annotation Term="OData.LongDescription" String="This type shall describe a manifest containing a …
34 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Manifest.v1_0_0">
38 <ComplexType Name="Manifest" BaseType="Manifest.Manifest">
41 <Annotation Term="OData.Description" String="The description of this manifest."/>
42 …rm="OData.LongDescription" String="This property shall contain the description of this manifest."/>
46 … <Annotation Term="OData.Description" String="The date and time when the manifest was created."/>
[all …]
H A DCompositionService_v1.xml34 <edmx:Include Namespace="Manifest"/>
73 …rm="OData.Description" String="This action performs a set of operations specified by a manifest."/>
74 …ations specified by a manifest. Services shall not apply any part of the manifest unless all oper…
84 <Parameter Name="Manifest" Type="Manifest.Manifest">
85 …<Annotation Term="OData.Description" String="The manifest containing the compose operation request…
86 …ntain the manifest containing the compose operation request. This parameter shall be required if …
274 <Property Name="Manifest" Type="Manifest.Manifest" Nullable="false">
275 …<Annotation Term="OData.Description" String="The manifest containing the compose operation respons…
276 …ntain the manifest containing the compose operation response. This property shall be required if …
287 …erm="OData.Description" String="Preview the outcome of the operations specified by the manifest."/>
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DCompositionService.v1_2_3.json42 "description": "This action performs a set of operations specified by a manifest.",
43 …ations specified by a manifest. Services shall not apply any part of the manifest unless all oper…
45 "Manifest": { object
46 … "$ref": "http://redfish.dmtf.org/schemas/v1/Manifest.json#/definitions/Manifest",
47 "description": "The manifest containing the compose operation request.",
48 …ntain the manifest containing the compose operation request. This parameter shall be required if …
98 "Manifest"
101 "Manifest": "The request body contains a manifest." string
104 …"Manifest": "This value shall indicate that the request contains a manifest as defined by the Redf… string
115 …"Apply": "Perform the requested operations specified by the manifest and modify resources as neede…
[all …]
H A DManifest.v1_1_2.json2 "$id": "http://redfish.dmtf.org/schemas/v1/Manifest.v1_1_2.json",
18 …"All": "This value shall indicate that all subordinate references in the manifest response will be…
19 …"None": "This value shall indicate that references in the manifest response will not be expanded.",
20 … "This value shall indicate that relevant subordinate references in the manifest response will be …
24 "Manifest": { object
26 …"description": "This type describes a manifest containing a set of requests to be fulfilled. The
27 …"longDescription": "This type shall describe a manifest containing a set of requests to be fulfill…
44 "description": "The description of this manifest.",
45 … "longDescription": "This property shall contain the description of this manifest.",
61 …"description": "The expansion control for references in manifest responses, similar to the `$expan…
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dmanifest.py13 '''A manifest item of a collection able to list missing packages'''
19 '''Tests for the manifest files and contents of an image'''
22 def check_manifest_entries(self, manifest, path): argument
25 with open(manifest, "r") as mfile:
36 .format(self.classname, manifest))
68 '''Verifying the SDK manifest entries exist, this may take a build'''
85 # get manifest location based on target to query about
92 mfilename[k] = "{}.{}.manifest".format(toolchain_outputname, k)
109 raise self.skipTest("{}: Error in obtaining manifest dirs"\
117 self.logger.debug("{}: Check manifest {}".format(
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/python/python3/
H A Dcreate_manifest3.py1 # This script is used as a bitbake task to create a new python manifest
11 # Go through the python-manifest file and launch a separate task for every single
18 # manifest and if we find that another package already includes it, then we will add
24 # This way we will create a new manifest from the data structure that was built during
25 # this process, on this new manifest each package will contain specifically only
34 # The manifest file for python3 has an extra field which contains the cached files for
62 # Empty dict to hold the whole manifest
87 with open(json_manifest, 'r+') as manifest:
88 json_contents = manifest.read()
89 manifest.seek(0, 0)
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Drepo.py31 we do care about the manifest to use. The default is "default".
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 Dmanifest.py7 from oe.manifest import Manifest
10 class PkgManifest(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)
224 unneeded pkgs by comparing the old full manifest in previous existing
225 image and the new full manifest in the current image.
229 # Parse full manifest in previous existing image creation session
230 old_full_manifest = self.manifest.parse_full_manifest()
232 # Create full manifest for the current image session, the old one
234 self.manifest.create_full(self.pm)
236 # Parse full manifest in current image creation session
[all …]
H A Dsdk.py11 from oe.package_manager.ipk.manifest import PkgManifest
12 from oe.manifest import Manifest
29 Manifest.MANIFEST_TYPE_SDK_TARGET)
31 Manifest.MANIFEST_TYPE_SDK_HOST)
45 def _populate_sysroot(self, pm, manifest): argument
46 pkgs_to_install = manifest.parse_initial_manifest()
56 [False, True][pkg_type == Manifest.PKG_TYPE_ATTEMPT_ONLY])
/openbmc/openbmc/poky/meta/lib/oe/package_manager/deb/
H A Dmanifest.py7 from oe.manifest import Manifest
9 class PkgManifest(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
24 Manifest.MANIFEST_TYPE_SDK_TARGET)
26 Manifest.MANIFEST_TYPE_SDK_HOST)
51 def _populate_sysroot(self, pm, manifest): argument
52 pkgs_to_install = manifest.parse_initial_manifest()
60 [False, True][pkg_type == Manifest.PKG_TYPE_ATTEMPT_ONLY])
/openbmc/openbmc/meta-phosphor/classes/
H A Dimage_types_phosphor.bbclass387 ln -sf ${S}/MANIFEST MANIFEST
391 make_signatures image-bmc MANIFEST publickey
394 image-bmc MANIFEST publickey ${signature_files}
442 ln -sf ${S}/MANIFEST MANIFEST
445 make_signatures image-u-boot image-kernel image-rofs image-rwfs MANIFEST publickey
446 make_tar_of_images static.mtd MANIFEST publickey ${signature_files}
468 manifest = {
469 "type": "phosphor-image-manifest",
480 "manifest-sha256": "",
484 manifest["info"]["extended-version"] = extended_version
[all …]
/openbmc/openbmc/poky/scripts/contrib/
H A Dimage-manifest42 def get_pkg_list(manifest): argument
44 with open(manifest, 'r') as f:
48 # manifest file
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)
326 # export manifest
327 shutil.copy2(args.manifest,os.path.join(tmpoutdir, "manifest"))
333 pkglist = get_pkg_list(args.manifest)
[all …]
/openbmc/linux/drivers/greybus/
H A Dmanifest.c3 * Greybus manifest parsing
31 * We scan the manifest once to identify where all the descriptors
107 dev_err(&intf->dev, "manifest too small (%zu < %zu)\n", size, in identify_descriptor()
223 * Find cport descriptors in the manifest associated with the given
308 * Find bundle descriptors in the manifest and set up their data
365 * While parsing manifest for an interface, treat bundles as in gb_manifest_parse_bundles()
406 /* Assign feature flags communicated via manifest */ in gb_manifest_parse_interface()
414 dev_err(&intf->dev, "manifest bundle descriptors not valid\n"); in gb_manifest_parse_interface()
430 * Parse a buffer containing an interface manifest.
435 * The first requirement is that the manifest's version is
[all …]
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-utils/xfsdump/files/
H A Dremove-install-as-user.patch85 # default is to install and don't append manifest
87 @@ -94,24 +65,16 @@ MANIFEST=:
130 - $MANIFEST d $DIRMODE $OWNER $GROUP ${dir#$DIST_ROOT}
131 + $MANIFEST d $DIRMODE ${dir#$DIST_ROOT}
139 - $MANIFEST f $FILEMODE $OWNER $GROUP $HERE/$solib ${install_name#$DIST_ROOT}
140 + $MANIFEST f $FILEMODE $HERE/$solib ${install_name#$DIST_ROOT}
148 - $MANIFEST f $FILEMODE $OWNER $GROUP $HERE/$old_library ${install_name#$DIST_ROOT}
149 + $MANIFEST f $FILEMODE $HERE/$old_library ${install_name#$DIST_ROOT}
172 - $MANIFEST f $FILEMODE $OWNER $GROUP $HERE/$f ${dir#$DIST_ROOT}/$f
173 + $MANIFEST f $FILEMODE $HERE/$f ${dir#$DIST_ROOT}/$f
[all …]
/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():
71 sdk_group.add_argument('--target-manifest', action='store',
72 help='sdk target manifest')
73 sdk_group.add_argument('--host-manifest', action='store',
74 help='sdk host manifest')
91 def _load_manifest(manifest): argument
93 if manifest:
94 with open(manifest) as f:
/openbmc/openbmc/poky/meta/lib/oe/package_manager/rpm/
H A Dmanifest.py7 from oe.manifest import Manifest
9 class PkgManifest(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 Dsdk.py10 from oe.manifest import Manifest
11 from oe.package_manager.rpm.manifest import PkgManifest
19 Manifest.MANIFEST_TYPE_SDK_TARGET)
21 Manifest.MANIFEST_TYPE_SDK_HOST)
43 def _populate_sysroot(self, pm, manifest): argument
44 pkgs_to_install = manifest.parse_initial_manifest()
53 if pkg_type == Manifest.PKG_TYPE_ATTEMPT_ONLY:
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)
38 unneeded pkgs by comparing the new install solution manifest and the
39 old installed manifest.
67 pkgs_to_install = self.manifest.parse_initial_manifest()
90 if pkg_type == Manifest.PKG_TYPE_ATTEMPT_ONLY:
/openbmc/linux/tools/perf/
H A Dperf-archive.sh31 MANIFEST=$(mktemp /tmp/perf-archive-manifest.XXXXXX)
38 echo ${linkname#$PERF_BUILDID_DIR} >> $MANIFEST
39 echo ${filename#$PERF_BUILDID_LINKDIR} >> $MANIFEST
42 tar cjf $PERF_DATA.tar.bz2 -C $PERF_BUILDID_DIR -T $MANIFEST
43 rm $MANIFEST $BUILDIDS || true
/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/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 …]
/openbmc/linux/include/sound/sof/
H A Dext_manifest.h10 * Extended manifest is a place to store metadata about firmware, known during
33 /* check extended manifest version consistency */
38 /* used extended manifest header version */
41 /* extended manifest header, deleting any field breaks backward compatibility */
56 /* Now define extended manifest elements */
58 /* Extended manifest elements types */
68 /* extended manifest element header */

12345678910>>...13