blob: a08cb26243611b8c7c95f7c3ee3e595b6da316ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
inherit systemd
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://ti-uim.service"
SYSTEMD_SERVICE_${PN} = "ti-uim.service"
PR = "r0"
PV = "0.1+git${SRCPV}"
do_install_append() {
# We do not want the blacklist
rm -f ${D}/${sysconfdir}/modprobe.d/ti_bt.conf
install -d ${D}${systemd_unitdir}/system/
install -m 0644 ${WORKDIR}/ti-uim.service ${D}${systemd_unitdir}/system
}
|