diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-03-28 20:02:33 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-04-06 13:00:09 +0200 |
commit | 82dbf3f408ee92b5650629cfe8292407f21b5a5c (patch) | |
tree | b7e2ee85a198f3e2c006590f25fa66aa743ddd6d /meta-oe/recipes-kernel | |
parent | 3ad787c673817dfa3cc378b8300557fe624e44d9 (diff) | |
download | meta-openembedded-82dbf3f408ee92b5650629cfe8292407f21b5a5c.tar.gz |
minicoredumper: Update to 2.0.0
* Clarify licensing and switch to github for fetching
* Delete empty /var/run
Fixes
minicoredumper-2.0.0: minicoredumper: Files/directories were installed but not shipped in any package:
/run
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-kernel')
-rw-r--r-- | meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.0.bb (renamed from meta-oe/recipes-kernel/minicoredumper/minicoredumper_1.0.2.bb) | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/meta-oe/recipes-kernel/minicoredumper/minicoredumper_1.0.2.bb b/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.0.bb index babe54448..58cd45a53 100644 --- a/meta-oe/recipes-kernel/minicoredumper/minicoredumper_1.0.2.bb +++ b/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.0.bb | |||
@@ -1,17 +1,24 @@ | |||
1 | SUMMARY = "minicoredumper provides an alternate core dump facility for Linux \ | 1 | SUMMARY = "minicoredumper provides an alternate core dump facility for Linux \ |
2 | to allow minimal and customized crash dumps" | 2 | to allow minimal and customized crash dumps" |
3 | LICENSE = " LGPLv2.1 & BSD" | 3 | LICENSE = " LGPLv2.1 & BSD-2-Clause" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=45445387350de96a0e70410470ee5cab" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=709087c2ed0acda54a4d91497a889e42 \ |
5 | DEPENDS = "elfutils dbus dbus-glib-native glib-2.0 dbus-glib util-linux" | 5 | file://COPYING.BSD;md5=b915ac80d5236d6aa659cb986daf00e5 \ |
6 | file://COPYING.LGPLv2.1;md5=321bf41f280cf805086dd5a720b37785 \ | ||
7 | " | ||
8 | DEPENDS = "elfutils dbus dbus-glib-native glib-2.0 dbus-glib util-linux json-c" | ||
6 | 9 | ||
7 | inherit autotools pkgconfig systemd update-rc.d | 10 | inherit autotools pkgconfig systemd update-rc.d |
8 | 11 | ||
9 | SRC_URI = "https://linutronix.de/${BPN}/files/${BPN}-${PV}.tar.gz \ | 12 | SRCREV = "248019446ccf6079926efb54f8b6dd7be769bbae" |
13 | |||
14 | PR .= "+git${SRCPV}" | ||
15 | |||
16 | SRC_URI = "git://github.com/Linutronix/minicoredumper-debian;branch=unstable \ | ||
10 | file://minicoredumper.service \ | 17 | file://minicoredumper.service \ |
11 | file://minicoredumper.init \ | 18 | file://minicoredumper.init \ |
12 | " | 19 | " |
13 | SRC_URI[md5sum] = "5ba9d116b52a8e2fb93456260644e753" | 20 | |
14 | SRC_URI[sha256sum] = "1b0eeb3d70dbd2ad6f2f673e4e3446e5dd784e132730e21d8f9dc0977e47dd9a" | 21 | S = "${WORKDIR}/git" |
15 | 22 | ||
16 | SYSTEMD_SERVICE_${PN} = "minicoredumper.service" | 23 | SYSTEMD_SERVICE_${PN} = "minicoredumper.service" |
17 | SYSTEMD_AUTO_ENABLE = "enable" | 24 | SYSTEMD_AUTO_ENABLE = "enable" |
@@ -21,6 +28,7 @@ INITSCRIPT_NAME_${PN} = "minicoredumper" | |||
21 | INITSCRIPT_PARAMS_${PN} = "defaults 89" | 28 | INITSCRIPT_PARAMS_${PN} = "defaults 89" |
22 | 29 | ||
23 | do_install_append() { | 30 | do_install_append() { |
31 | rmdir ${D}${localstatedir}/run | ||
24 | install -d ${D}/${sysconfdir}/minicoredumper | 32 | install -d ${D}/${sysconfdir}/minicoredumper |
25 | cp -rf ${S}/etc/* ${D}/${sysconfdir}/ | 33 | cp -rf ${S}/etc/* ${D}/${sysconfdir}/ |
26 | 34 | ||