blob: d1114251e7731f00b977b41f0f298441808ed23d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
PR_append = "-arago1"
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://bluez4-fix-synchronization-between-bluetoothd-and-dr.patch \
file://0001-socket-enable-for-bluez-4_98.patch \
file://0001-bluez-enable-source-interface.patch \
"
# udev 150-170 provide its on hid2hci tool and udev rules for it. Therefore,
# disabling hid2hci from bluez4.
EXTRA_OECONF := "${@oe_filter_out('--enable-hid2hci', '${EXTRA_OECONF}', d)}"
EXTRA_OECONF := "${@'${EXTRA_OECONF}'.replace('--disable-hidd', '--enable-hidd')}"
DEPENDS += "libsndfile1"
# Add test/agent for testing
PACKAGES =+ "bluez4-agent"
do_install_append () {
${TARGET_SYS}-libtool --mode=install install -c 'test/agent' ${D}${bindir}/agent
}
FILES_bluez4-agent = "${bindir}/agent"
|