29 lines
845 B
BlitzBasic
29 lines
845 B
BlitzBasic
# Copyright (C) 2020, STMicroelectronics - All Rights Reserved
|
|
|
|
DESCRIPTION = "Systemd service to suspend/resume correctly bluetooth"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
SRC_URI = " \
|
|
file://bluetooth_brcmfmac_driver.sh \
|
|
file://bluetooth-brcmfmac-sleep.service \
|
|
"
|
|
|
|
inherit systemd
|
|
SYSTEMD_PACKAGES += "${PN}"
|
|
SYSTEMD_SERVICE:${PN} = "bluetooth-brcmfmac-sleep.service"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${WORKDIR}/bluetooth_brcmfmac_driver.sh ${D}${bindir}/
|
|
|
|
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
|
install -d ${D}${systemd_unitdir}/system/
|
|
|
|
install -m 0644 ${WORKDIR}/bluetooth-brcmfmac-sleep.service ${D}${systemd_unitdir}/system/
|
|
fi
|
|
}
|
|
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
|