bluez5: Adding gatttool to rootfs

gatttool is used for BLE. By default it is not installed.

Signed-off-by: Isaac Hermida <isaac.hermida@digi.com>
This commit is contained in:
Isaac Hermida 2015-11-09 14:15:27 +01:00
parent 4dbb6185d7
commit 15395448d5
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
# Copyright (C) 2015 Digi International.
do_install_append() {
# gatttool is useful for BLE work but not installed by default
install -d ${D}${sbindir}
install -m 0755 attrib/gatttool ${D}${sbindir}/gatttool
}