blob: 6a40b5f3588c7200531ac78c0f3efadeb6fc48d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
FILESEXTRAPATHS:prepend := "${THISDIR}/wireplumber-config-agl:"
SRC_URI += "\
file://50-access-agl.lua \
file://access-smack.lua \
"
do_install:append() {
# install smack-specific config
config_dir="${D}${sysconfdir}/wireplumber/host.lua.d/"
access_dir="${D}${datadir}/wireplumber/scripts/access/"
install -d ${access_dir}
install -m 0644 ${WORKDIR}/50-access-agl.lua ${config_dir}
install -m 0644 ${WORKDIR}/access-smack.lua ${access_dir}
}
|