blob: c507894c85b8fe1ff9f798c98f3bd4ae262ae48e [file] [log] [blame]
Matt Spinler1b8b9042016-08-25 13:04:09 -05001SUMMARY = "Phosphor machine readable workbook patching script"
2DESCRIPTION = "Retrieve the script that can patch the MRW XML"
3PR = "r1"
Patrick Venture5046fb02018-10-30 11:44:04 -07004PV = "1.0+git${SRCPV}"
Brad Bishopedb390a2018-11-06 10:09:31 -08005LICENSE = "Apache-2.0"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
Matt Spinler1b8b9042016-08-25 13:04:09 -05007
8S = "${WORKDIR}/git"
9
Matt Spinlerb103a332016-09-15 10:39:43 -050010inherit mrw-rev
Joseph Reynolds79809ea2021-02-26 15:37:31 -060011inherit native
Matt Spinler1b8b9042016-08-25 13:04:09 -050012
Patrick Williamsef7143d2020-04-08 09:55:25 -050013DEPENDS += "python3-native python3-lxml-native"
Matt Spinler1b8b9042016-08-25 13:04:09 -050014
Patrick Williams87880c82016-10-31 15:46:40 -050015SRC_URI += "${MRW_TOOLS_SRC_URI}"
16SRCREV = "${MRW_TOOLS_SRCREV}"
Matt Spinler1b8b9042016-08-25 13:04:09 -050017
18do_install() {
Matt Spinler98c33e32016-09-20 13:32:44 -050019 install -d ${D}${bindir}/obmc-mrw
20 install -m 0755 patchxml.py ${D}${bindir}/obmc-mrw
Matt Spinler1b8b9042016-08-25 13:04:09 -050021}