blob: 99b0edea13b04f5ec0415e0fdcf526fb1f301603 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
FILESEXTRAPATHS_append := "${THISDIR}/files:"
SRC_URI_append_rcar-gen3 = " \
file://main.conf \
"
PACKAGECONFIG_append = " experimental"
NOINST_TOOLS_EXPERIMENTAL_remove = " tools/bdaddr"
do_install_append_rcar-gen3() {
install -d ${D}/etc/bluetooth
install -m 644 ${WORKDIR}/main.conf ${D}/${sysconfdir}/bluetooth/
}
|