blob: cc50bfe2a86c136c3b66e52ec8b52a861247c5aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
SUMMARY = "Systemd unit for agl-service-can-low-level CAN device helper"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
inherit systemd allarch
SRC_URI = "file://can-dev-mapping-helper.service \
file://can-dev-mapping-helper.sh \
"
do_configure[noexec] = "1"
do_compile[noexec] = "1"
do_install() {
install -D -m 0644 ${WORKDIR}/${BPN}.service ${D}${systemd_system_unitdir}/${BPN}.service
install -D -m 0755 ${WORKDIR}/${BPN}.sh ${D}${sbindir}/${BPN}.sh
}
FILES:${PN} += "${systemd_system_unitdir}"
RDEPENDS:${PN} += "bash"
|