blob: 1f98e0bace900992c55e36b00fddcadb9d4a3b85 [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"
4
5LICENSE = "Apache-2.0"
Michael Tritz2d37fde2017-02-01 14:07:44 -06006LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
Michael Tritz532b3132017-01-25 15:16:04 -06007
8RDEPENDS_${PN} += " \
9 systemd \
10 ${VIRTUAL-RUNTIME_base-utils} \
11 "
12
Michael Tritz2d37fde2017-02-01 14:07:44 -060013S = "${WORKDIR}/git"
Patrick Williams57f1ad32017-07-31 06:15:52 -050014SRC_URI += "git://github.com/openbmc/phosphor-debug-collector"
Michael Tritz532b3132017-01-25 15:16:04 -060015
Patrick Williams57f1ad32017-07-31 06:15:52 -050016SRCREV = "5cca05a8e3ea732e1f57bedf698de3bb7820116c"
Michael Tritz532b3132017-01-25 15:16:04 -060017
18do_install() {
19 install -d ${D}${bindir}
20 install -m 0755 ffdc \
21 ${D}${bindir}/ffdc
22}