blob: cb24b268657b0fe48a5211589ccaaa111adac554 [file] [log] [blame]
Deepak Kodihallif7a1a782017-02-20 00:21:12 -06001SUMMARY = "FRU properties config for openpower-vpd-parser"
2PR = "r1"
Brad Bishopfc00c752018-11-05 19:28:01 -08003LICENSE = "Apache-2.0"
Brad Bishop1ebdb612019-09-13 12:18:25 -04004LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
Deepak Kodihallif7a1a782017-02-20 00:21:12 -06005
Deepak Kodihallif7a1a782017-02-20 00:21:12 -06006inherit openpower-fru-vpd
Joseph Reynolds79809ea2021-02-26 15:37:31 -06007inherit native
Deepak Kodihallif7a1a782017-02-20 00:21:12 -06008
9SRC_URI += "file://example.yaml"
10
11PROVIDES += "virtual/openpower-fru-properties"
12
13S = "${WORKDIR}"
14
15do_install() {
16 # This recipe is supposed to create an output yaml file with
17 # FRU property values extracted from the MRW. This example recipe
18 # provides a sample output file.
19
20 DEST=${D}${properties_datadir}
21 install -d ${DEST}
Ratan Guptaa7825502017-03-08 01:34:04 +053022 install example.yaml ${DEST}/out.yaml
Deepak Kodihallif7a1a782017-02-20 00:21:12 -060023}