blob: 45b43c725e915811f41064d0a3e7aa55516038b6 [file] [log] [blame]
Brad Bishop985dee92019-11-11 08:08:32 -05001From a73bbed89fb049ac424c211629935b26013e2573 Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: "Peter A. Bigot" <pab@pabigot.com>
3Date: Wed, 14 Nov 2018 09:19:51 -0600
4Subject: [PATCH] bthelper: correct path for hciconfig under Yocto
5
6Upstream-Status: Inapproprate [OE-specific]
7Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Brad Bishop985dee92019-11-11 08:08:32 -05008Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
9
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080010---
11 usr/bin/bthelper | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
13
14diff --git a/usr/bin/bthelper b/usr/bin/bthelper
Brad Bishop985dee92019-11-11 08:08:32 -050015index af597e5..5de84f6 100755
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080016--- a/usr/bin/bthelper
17+++ b/usr/bin/bthelper
18@@ -10,7 +10,7 @@ fi
19
20 dev="$1"
21 # Need to bring hci up before looking at MAC as it can be all zeros during init
22-/bin/hciconfig "$dev" up
Brad Bishop985dee92019-11-11 08:08:32 -050023-/bin/hciconfig "$dev" | grep -qE "BD Address: (B8:27:EB|DC:A6:32):" || exit 0
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080024+/usr/bin/hciconfig "$dev" up
Brad Bishop985dee92019-11-11 08:08:32 -050025+/usr/bin/hciconfig "$dev" | grep -qE "BD Address: (B8:27:EB|DC:A6:32):" || exit 0
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080026 /usr/bin/hcitool -i "$dev" cmd 0x3f 0x1c 0x01 0x02 0x00 0x01 0x01 > /dev/null
27