blob: 1ab710f6e0f70be25238b81dbdc1cb7109593488 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Linux Bluetooth Stack Userland Utilities."
SECTION = "libs"
PRIORITY = "optional"
DEPENDS = "bluez-libs"
RPROVIDES = "bluez-pan bluez-sdp"
PR = "r1"
SRC_URI = "http://bluez.sourceforge.net/download/bluez-utils-${PV}.tar.gz"
EXTRA_OECONF = "--with-bluez-libs=${STAGING_LIBDIR} --with-bluez-includes=${STAGING_INCDIR}"
inherit autotools update-rc.d
INITSCRIPT_NAME = "bluetooth"
INITSCRIPT_PARAMS = "defaults"
pgk_postinst() {
#!/bin/sh
chmod u+s /sbin/hciattach /sbin/hciconfig
}
|