blob: f6ee824a843d1c48562a00f834ed0f15fa83fd98 [file] [log] [blame]
Michael Tritz62585f42017-01-25 15:16:04 -06001SUMMARY = "FFDC collector script"
2DESCRIPTION = "Command line tool to collect and tar up debug data"
3PR = "r1"
Patrick Venture0cfbf3b2018-10-05 15:06:59 -07004PV = "1.0+git${SRCPV}"
Michael Tritz62585f42017-01-25 15:16:04 -06005
Ramesh Iyyar17743ee2020-12-07 06:46:45 -06006require recipes-phosphor/dump/phosphor-debug-collector.inc
Michael Tritz62585f42017-01-25 15:16:04 -06007
Brad Bishop26873c92019-03-22 23:41:42 -04008DEPENDS += "systemd"
9
Michael Tritz62585f42017-01-25 15:16:04 -060010RDEPENDS_${PN} += " \
Michael Tritz62585f42017-01-25 15:16:04 -060011 ${VIRTUAL-RUNTIME_base-utils} \
12 "
13
Michael Tritz41d07b12017-02-01 14:07:44 -060014S = "${WORKDIR}/git"
Michael Tritz62585f42017-01-25 15:16:04 -060015
16do_install() {
17 install -d ${D}${bindir}
18 install -m 0755 ffdc \
19 ${D}${bindir}/ffdc
20}