blob: 8766a776a23b9e0adf0c39db1c7c892148ac5ba9 [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
Andrew Geisslerea144b032023-01-27 16:03:57 -06006Upstream-Status: Inappropriate [OE-specific]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08007Signed-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---
Andrew Geisslera4353c82021-06-25 14:23:27 -050011 usr/bin/bthelper | 6 +++---
12 1 file changed, 3 insertions(+), 3 deletions(-)
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080013
14diff --git a/usr/bin/bthelper b/usr/bin/bthelper
Andrew Geisslera4353c82021-06-25 14:23:27 -050015index 2133fbc..1fc9245 100755
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080016--- a/usr/bin/bthelper
17+++ b/usr/bin/bthelper
Andrew Geisslera4353c82021-06-25 14:23:27 -050018@@ -12,8 +12,8 @@ fi
19 dev=$1
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080020
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021 # Need to bring hci up before looking at MAC as it can be all zeros during init
Andrew Geisslera4353c82021-06-25 14:23:27 -050022-/bin/hciconfig $dev up
23-if ! /bin/hciconfig $dev | grep -q "Bus: UART"; then
24+/usr/bin/hciconfig $dev up
25+if ! /usr/bin/hciconfig $dev | grep -q "Bus: UART"; then
26 echo Not a UART-attached BT Modem
27 exit 0
28 fi
29@@ -26,7 +26,7 @@ if ( /usr/bin/hcitool -i $dev dev | grep -q -E '\s43:4[35]:' ); then
30 BDADDR=`printf '0x%02x 0x%02x 0x%02x 0xeb 0x27 0xb8' $((0x$B3 ^ 0xaa)) $((0x$B2 ^ 0xaa)) $((0x$B1 ^ 0xaa))`
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080031
Andrew Geisslera4353c82021-06-25 14:23:27 -050032 /usr/bin/hcitool -i $dev cmd 0x3f 0x001 $BDADDR
33- /bin/hciconfig $dev reset
34+ /usr/bin/hciconfig $dev reset
35 else
36 echo Raspberry Pi BDADDR already set
37 fi
38--
392.31.1
40