blob: c5afa875f068900f7b96fcac3336d06bf8445a59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:"
SRC_URI_append = " file://bluetooth.conf"
APPLY_v522 = "${@str('no' if '${PV}' != '5.22' else 'yes')}"
SRC_URI_append = "\
file://0001_fix_compile_issue_when_using_in_c++.patch;apply=${APPLY_v522} \
"
do_install_append() {
install -m 0644 ${WORKDIR}/bluetooth.conf ${D}${sysconfdir}/dbus-1/system.d/bluetooth.conf
}
|