mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-03 20:54:42 +02:00
This helps with re-using sstate tasks when machines are similar Fixes Hash for dependent task emlog/kernel-module-emlog_git.bb:do_packagedata changed from a70b22026e418998e61d08b0b0ab64a3e26fd0da41a1d12f4356554b6b043794 to 7817106c7626c3c4b238f03771fc32dc8f3dc5e7496ff98cf8a812039939f915 Signed-off-by: Khem Raj <raj.khem@gmail.com>
23 lines
472 B
BlitzBasic
23 lines
472 B
BlitzBasic
require ${BPN}.inc
|
|
|
|
SRC_URI += "file://${BPN}.initd"
|
|
|
|
SRC_URI_append_libc-musl = " file://Drop-use-of-error-h.patch"
|
|
|
|
inherit update-rc.d
|
|
|
|
INITSCRIPT_NAME = "${BPN}"
|
|
|
|
do_compile() {
|
|
oe_runmake nbcat
|
|
oe_runmake mkemlog
|
|
}
|
|
|
|
do_install() {
|
|
install -Dm 0755 ${WORKDIR}/${BPN}.initd ${D}${sysconfdir}/init.d/${BPN}
|
|
install -Dm 0755 ${S}/nbcat ${D}${bindir}/nbcat
|
|
install -Dm 0755 ${S}/mkemlog ${D}${bindir}/mkemlog
|
|
}
|
|
|
|
RRECOMMENDS_${PN} += "kernel-module-emlog"
|