mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-07 22:35:12 +00:00
17 lines
421 B
Plaintext
17 lines
421 B
Plaintext
inherit systemd
|
|
|
|
# look for files in the layer first
|
|
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
|
|
|
SRC_URI += "file://atd.service"
|
|
|
|
RPROVIDES_${PN} += "${PN}-systemd"
|
|
RREPLACES_${PN} += "${PN}-systemd"
|
|
RCONFLICTS_${PN} += "${PN}-systemd"
|
|
SYSTEMD_SERVICE_${PN} = "atd.service"
|
|
do_install_append() {
|
|
install -d ${D}${systemd_unitdir}/system
|
|
install -m 0644 ${WORKDIR}/atd.service ${D}${systemd_unitdir}/system
|
|
}
|
|
|