mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
Fixes | attrib/utils.c:25:18: fatal error: glib.h: No such file or directory | compilation terminated. | make[1]: *** [attrib/utils.o] Error 1 | make[1]: *** Waiting for unfinished jobs.... | attrib/interactive.c:27:18: fatal error: glib.h: No such file or directory | compilation terminated. | make[1]: *** [attrib/interactive.o] Error 1 | make: *** [all] Error 2 (From OE-Core rev: 3ada29c7622f898002e156e23c60115c046c118b) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.1 KiB
BlitzBasic
34 lines
1.1 KiB
BlitzBasic
require bluez4.inc
|
|
|
|
PR = "r4"
|
|
|
|
SRC_URI += "file://bluetooth.conf"
|
|
|
|
SRC_URI[md5sum] = "296111afac49e3f9035085ac14daf518"
|
|
SRC_URI[sha256sum] = "c06fd50fd77909cad55e3181a42c6bce7cfcf7abb8cd87871c13d0d70f87fa99"
|
|
|
|
do_install_append() {
|
|
install -m 0644 ${S}/audio/audio.conf ${D}/${sysconfdir}/bluetooth/
|
|
install -m 0644 ${S}/network/network.conf ${D}/${sysconfdir}/bluetooth/
|
|
install -m 0644 ${S}/input/input.conf ${D}/${sysconfdir}/bluetooth/
|
|
# at_console doesn't really work with the current state of OE, so punch some more holes so people can actually use BT
|
|
install -m 0644 ${WORKDIR}/bluetooth.conf ${D}/${sysconfdir}/dbus-1/system.d/
|
|
}
|
|
|
|
RDEPENDS_${PN}-dev = "bluez-hcidump"
|
|
|
|
PACKAGES =+ "libasound-module-bluez"
|
|
|
|
FILES_libasound-module-bluez = "${libdir}/alsa-lib/lib*.so ${datadir}/alsa"
|
|
FILES_${PN} += "${libdir}/bluetooth/plugins/*.so ${base_libdir}/udev/ ${base_libdir}/systemd/"
|
|
FILES_${PN}-dev += "\
|
|
${libdir}/bluetooth/plugins/*.la \
|
|
${libdir}/alsa-lib/*.la \
|
|
"
|
|
|
|
FILES_${PN}-dbg += "\
|
|
${libdir}/bluetooth/plugins/.debug \
|
|
${libdir}/*/.debug \
|
|
${base_libdir}/udev/.debug \
|
|
"
|