1ff075f6eSBrad BishopSUMMARY = "FRU properties config for ipmi-fru-parser" 2ff075f6eSBrad BishopPR = "r1" 3*75f0387bSBrad BishopLICENSE = "Apache-2.0" 4*75f0387bSBrad BishopLIC_FILES_CHKSUM = "file://${PHOSPHORBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658" 5ff075f6eSBrad Bishop 6ff075f6eSBrad Bishopinherit native 7ff075f6eSBrad Bishopinherit phosphor-ipmi-fru 8ff075f6eSBrad Bishop 9ff075f6eSBrad BishopSRC_URI += "file://extra-properties.yaml" 10ff075f6eSBrad Bishop 11ff075f6eSBrad BishopPROVIDES += "virtual/phosphor-ipmi-fru-properties" 12ff075f6eSBrad Bishop 13ff075f6eSBrad BishopS = "${WORKDIR}" 14ff075f6eSBrad Bishop 15ff075f6eSBrad Bishopdo_install() { 16ff075f6eSBrad Bishop # This recipe is supposed to create an output yaml file with 17ff075f6eSBrad Bishop # FRU property values extracted from the MRW. This example recipe 18ff075f6eSBrad Bishop # provides a sample output file. 19ff075f6eSBrad Bishop 20ff075f6eSBrad Bishop DEST=${D}${properties_datadir} 21ff075f6eSBrad Bishop install -d ${DEST} 22ff075f6eSBrad Bishop install extra-properties.yaml ${DEST} 23ff075f6eSBrad Bishop} 24