mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
c61dc077bb
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
27 lines
560 B
BlitzBasic
27 lines
560 B
BlitzBasic
require ${BPN}.inc
|
|
|
|
SRC_URI += "file://${BPN}.initd \
|
|
file://0001-Remove-modules_clean-from-clean-target.patch \
|
|
"
|
|
|
|
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"
|