blob: 8d202dad78ed8c7a9f5f67984fce3ff29d14af05 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
require bluez-utils3.inc
PR = "r3"
# TI patch landed upstream sometime between 3.35 and 3.36,
# albeit in a somewhat different form
SRC_URI += "file://hciattach-ti-bts.patch"
# see bluez-utils3.inc for the explanation of these option
EXTRA_OECONF = " \
--enable-bccmd \
--enable-hid2hci \
--enable-hidd \
--enable-pand \
--enable-dund \
--disable-alsa \
--disable-cups \
--enable-glib \
--disable-sdpd \
--enable-network \
--enable-serial \
--enable-input \
--enable-audio \
--enable-echo \
--enable-configfile \
--enable-initscripts \
--enable-test \
--enable-hidd \
--enable-obex \
--enable-pand \
--enable-dund \
--enable-avctrl \
--enable-hid2hci \
--enable-dfutool \
"
CONFFILES_${PN} = " \
${sysconfdir}/bluetooth/hcid.conf \
${sysconfdir}/default/bluetooth \
"
CONFFILES_${PN}-compat = " \
${sysconfdir}/bluetooth/rfcomm.conf \
"
PACKAGES =+ "bluez-audio"
FILES_${PN} = " \
${base_sbindir}/hcid \
${libdir}/bluetooth/plugins/*.so \
${sysconfdir}/init.d/bluetooth \
${sysconfdir}/bluetooth/hcid.conf \
${sysconfdir}/default \
${sysconfdir}/dbus-1 \
${base_sbindir}/hciattach \
"
FILES_bluez-audio = " \
${libdir}/bluetooth/plugins/libaudio.so \
${libdir}/gstreamer-0.10/*.so \
"
FILES_${PN}-dbg += " \
${libdir}/bluetooth/plugins/.debug \
${libdir}/gstreamer-0.10/.debug \
"
FILES_${PN}-dev += " \
${libdir}/bluetooth/plugins/*.la \
${libdir}/gstreamer-0.10/*.la \
"
SRC_URI[md5sum] = "2e02aabd1a48998a48a22797f59ccf14"
SRC_URI[sha256sum] = "c9e8f3aa3a34a558293faa1cb2b2204061852d045aaa5311bb1481f89751ab1d"
|