Brad Bishop | 985dee9 | 2019-11-11 08:08:32 -0500 | [diff] [blame] | 1 | From a73bbed89fb049ac424c211629935b26013e2573 Mon Sep 17 00:00:00 2001 |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 2 | From: "Peter A. Bigot" <pab@pabigot.com> |
| 3 | Date: Wed, 14 Nov 2018 09:19:51 -0600 |
| 4 | Subject: [PATCH] bthelper: correct path for hciconfig under Yocto |
| 5 | |
| 6 | Upstream-Status: Inapproprate [OE-specific] |
| 7 | Signed-off-by: Peter A. Bigot <pab@pabigot.com> |
Brad Bishop | 985dee9 | 2019-11-11 08:08:32 -0500 | [diff] [blame] | 8 | Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> |
| 9 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 10 | --- |
Andrew Geissler | a4353c8 | 2021-06-25 14:23:27 -0500 | [diff] [blame^] | 11 | usr/bin/bthelper | 6 +++--- |
| 12 | 1 file changed, 3 insertions(+), 3 deletions(-) |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 13 | |
| 14 | diff --git a/usr/bin/bthelper b/usr/bin/bthelper |
Andrew Geissler | a4353c8 | 2021-06-25 14:23:27 -0500 | [diff] [blame^] | 15 | index 2133fbc..1fc9245 100755 |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 16 | --- a/usr/bin/bthelper |
| 17 | +++ b/usr/bin/bthelper |
Andrew Geissler | a4353c8 | 2021-06-25 14:23:27 -0500 | [diff] [blame^] | 18 | @@ -12,8 +12,8 @@ fi |
| 19 | dev=$1 |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 20 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 21 | # Need to bring hci up before looking at MAC as it can be all zeros during init |
Andrew Geissler | a4353c8 | 2021-06-25 14:23:27 -0500 | [diff] [blame^] | 22 | -/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 Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 31 | |
Andrew Geissler | a4353c8 | 2021-06-25 14:23:27 -0500 | [diff] [blame^] | 32 | /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 | -- |
| 39 | 2.31.1 |
| 40 | |