hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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"