blob: 5e6fcf7244bfdd4ebca2ce9950aa06eeae479deb [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
Matt Spinler0a8ea632017-12-14 13:31:55 -06007inherit mrw-xml
Joseph Reynolds79809ea2021-02-26 15:37:31 -06008inherit native
Deepak Kodihallif7a1a782017-02-20 00:21:12 -06009
10SRC_URI += "file://config.yaml"
11
12DEPENDS += " \
13 mrw-native \
14 mrw-perl-tools-native \
15 "
16
17PROVIDES += "virtual/openpower-fru-properties"
18
19S = "${WORKDIR}"
20
21do_install() {
22 DEST=${D}${properties_datadir}
23 install -d ${DEST}
24
25 ${bindir}/perl-native/perl \
26 ${bindir}/gen_fru_properties.pl \
Matt Spinler0a8ea632017-12-14 13:31:55 -060027 -m ${mrw_datadir}/${MRW_XML} \
Deepak Kodihallif7a1a782017-02-20 00:21:12 -060028 -c config.yaml \
29 -o ${DEST}/out.yaml
30}