mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
af16bd03d0
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
18 lines
415 B
Plaintext
18 lines
415 B
Plaintext
inherit systemd
|
|
|
|
PRINC := "${@int(PRINC) + 2}"
|
|
|
|
# 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() {
|
|
ln -sf /dev/null ${D}${systemd_unitdir}/system/dropbear.service
|
|
}
|