mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 20:51:57 +02:00
While on it, the recipe has been updated to use systemd.bbclass and cleaned up. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
34 lines
941 B
Plaintext
34 lines
941 B
Plaintext
inherit systemd
|
|
|
|
PR .= ".meta-oe.1"
|
|
|
|
# look for files in the layer first
|
|
FILESEXTRAPATHS := "${THISDIR}/${PN}"
|
|
|
|
SRC_URI += "file://dropbearkey.service \
|
|
file://dropbear@.service \
|
|
file://dropbear.socket"
|
|
|
|
SYSTEMD_PACKAGES = "${PN}-systemd"
|
|
SYSTEMD_SERVICE_${PN}-systemd = "dropbear.socket"
|
|
|
|
do_install_append() {
|
|
install -d ${D}${base_libdir}/systemd/system
|
|
install -m 0644 ${WORKDIR}/dropbearkey.service ${D}${base_libdir}/systemd/system/
|
|
install -m 0644 ${WORKDIR}/dropbear@.service ${D}${base_libdir}/systemd/system/
|
|
install -m 0644 ${WORKDIR}/dropbear.socket ${D}${base_libdir}/systemd/system/
|
|
}
|
|
|
|
PACKAGES += "${PN}-systemd"
|
|
|
|
RDEPENDS_${PN}-systemd += "dropbear"
|
|
FILES_${PN}-systemd = "${base_libdir}/systemd"
|
|
|
|
pkg_postinst_${PN}-systemd_append() {
|
|
ln -sf /dev/null $D${base_libdir}/systemd/system/dropbear.service
|
|
}
|
|
|
|
pkg_postrm_${PN}-systemd_append() {
|
|
rm -f ${base_libdir}/systemd/system/dropbear.service
|
|
}
|