blob: b0fe9ad98e9006eea00cba337c40d45fa1337d90 [file] [log] [blame]
Michael Tritz532b3132017-01-25 15:16:04 -06001SUMMARY = "FFDC collector script"
2DESCRIPTION = "Command line tool to collect and tar up debug data"
3PR = "r1"
Patrick Venture8b49b932018-10-05 15:06:59 -07004PV = "1.0+git${SRCPV}"
Michael Tritz532b3132017-01-25 15:16:04 -06005
6LICENSE = "Apache-2.0"
Michael Tritz2d37fde2017-02-01 14:07:44 -06007LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
Michael Tritz532b3132017-01-25 15:16:04 -06008
9RDEPENDS_${PN} += " \
10 systemd \
11 ${VIRTUAL-RUNTIME_base-utils} \
12 "
13
Michael Tritz2d37fde2017-02-01 14:07:44 -060014S = "${WORKDIR}/git"
Patrick Williams57f1ad32017-07-31 06:15:52 -050015SRC_URI += "git://github.com/openbmc/phosphor-debug-collector"
Michael Tritz532b3132017-01-25 15:16:04 -060016
Andrew Geissler4ec43cb2018-10-05 02:30:33 +000017SRCREV = "d3d377426244621d5cc9274ee8ecb3a8f178c7f9"
Michael Tritz532b3132017-01-25 15:16:04 -060018
19do_install() {
20 install -d ${D}${bindir}
21 install -m 0755 ffdc \
22 ${D}${bindir}/ffdc
23}