blob: 6b93dace9362045813de2f0c66b50614953aa298 [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
6LICENSE = "Apache-2.0"
Michael Tritz41d07b12017-02-01 14:07:44 -06007LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
Michael Tritz62585f42017-01-25 15:16:04 -06008
Brad Bishop26873c92019-03-22 23:41:42 -04009DEPENDS += "systemd"
10
Michael Tritz62585f42017-01-25 15:16:04 -060011RDEPENDS_${PN} += " \
Michael Tritz62585f42017-01-25 15:16:04 -060012 ${VIRTUAL-RUNTIME_base-utils} \
13 "
14
Michael Tritz41d07b12017-02-01 14:07:44 -060015S = "${WORKDIR}/git"
Patrick Williamsb1a36592017-07-31 06:15:52 -050016SRC_URI += "git://github.com/openbmc/phosphor-debug-collector"
Michael Tritz62585f42017-01-25 15:16:04 -060017
Andrew Geisslerbd911102020-12-15 08:13:34 +000018SRCREV = "ff9c4527ea3ac488868b7b0c60b0239ed8a3b206"
Michael Tritz62585f42017-01-25 15:16:04 -060019
20do_install() {
21 install -d ${D}${bindir}
22 install -m 0755 ffdc \
23 ${D}${bindir}/ffdc
24}