Michael Tritz | 62585f4 | 2017-01-25 15:16:04 -0600 | [diff] [blame] | 1 | SUMMARY = "FFDC collector script" |
| 2 | DESCRIPTION = "Command line tool to collect and tar up debug data" |
| 3 | PR = "r1" |
Patrick Venture | 0cfbf3b | 2018-10-05 15:06:59 -0700 | [diff] [blame] | 4 | PV = "1.0+git${SRCPV}" |
Michael Tritz | 62585f4 | 2017-01-25 15:16:04 -0600 | [diff] [blame] | 5 | |
| 6 | LICENSE = "Apache-2.0" |
Michael Tritz | 41d07b1 | 2017-02-01 14:07:44 -0600 | [diff] [blame] | 7 | LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" |
Michael Tritz | 62585f4 | 2017-01-25 15:16:04 -0600 | [diff] [blame] | 8 | |
Brad Bishop | 26873c9 | 2019-03-22 23:41:42 -0400 | [diff] [blame] | 9 | DEPENDS += "systemd" |
| 10 | |
Michael Tritz | 62585f4 | 2017-01-25 15:16:04 -0600 | [diff] [blame] | 11 | RDEPENDS_${PN} += " \ |
Michael Tritz | 62585f4 | 2017-01-25 15:16:04 -0600 | [diff] [blame] | 12 | ${VIRTUAL-RUNTIME_base-utils} \ |
| 13 | " |
| 14 | |
Michael Tritz | 41d07b1 | 2017-02-01 14:07:44 -0600 | [diff] [blame] | 15 | S = "${WORKDIR}/git" |
Patrick Williams | b1a3659 | 2017-07-31 06:15:52 -0500 | [diff] [blame] | 16 | SRC_URI += "git://github.com/openbmc/phosphor-debug-collector" |
Michael Tritz | 62585f4 | 2017-01-25 15:16:04 -0600 | [diff] [blame] | 17 | |
Andrew Geissler | 6e5e407 | 2019-03-05 02:12:25 +0000 | [diff] [blame] | 18 | SRCREV = "fa180596fe2a3c6fe65e48055e02e0c3e4ef5977" |
Michael Tritz | 62585f4 | 2017-01-25 15:16:04 -0600 | [diff] [blame] | 19 | |
| 20 | do_install() { |
| 21 | install -d ${D}${bindir} |
| 22 | install -m 0755 ffdc \ |
| 23 | ${D}${bindir}/ffdc |
| 24 | } |