blob: 3b05b9e022e824679c25285d0ba7a24f88a1d5d7 [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
Ramesh Iyyarb5c2fac2020-12-07 06:46:45 -06006require recipes-phosphor/dump/phosphor-debug-collector.inc
Michael Tritz532b3132017-01-25 15:16:04 -06007
Brad Bishop44f3cce2019-03-22 23:41:42 -04008DEPENDS += "systemd"
9
Patrick Williams12fc9392021-08-06 09:16:53 -050010RDEPENDS:${PN} += " \
Michael Tritz532b3132017-01-25 15:16:04 -060011 ${VIRTUAL-RUNTIME_base-utils} \
12 "
13
Michael Tritz2d37fde2017-02-01 14:07:44 -060014S = "${WORKDIR}/git"
Michael Tritz532b3132017-01-25 15:16:04 -060015
16do_install() {
17 install -d ${D}${bindir}
18 install -m 0755 ffdc \
19 ${D}${bindir}/ffdc
20}