blob: bf71dc3c332ebe2735e20b8a9723a4c5b26b479f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
SRC_URI += " \
file://0001-linking-reset-link-when-moving-target.patch \
"
do_install:append() {
systemd_dir="${D}${sysconfdir}/systemd/system/"
# mask the main service, to enable split-instance configuration
# accomodated by the services installed in wireplumber-config-agl
# and wireplumber-policy-config-agl
install -d ${systemd_dir}
ln -s /dev/null ${systemd_dir}/wireplumber.service
}
|