From 61f0df3e71c7a943000750db1067f50fe019af27 Mon Sep 17 00:00:00 2001 From: Daniel Storozhev Date: Mon, 23 Apr 2018 13:34:39 +0200 Subject: [PATCH] Bluetooth fix for Kirin 65x BTM_BYPASS_EXTRA_ACL_SETUP has to be true for Kirin 650/659 (aka hi6250) devices. --- vndk-detect | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vndk-detect b/vndk-detect index 965c42c..cbc563e 100644 --- a/vndk-detect +++ b/vndk-detect @@ -10,6 +10,6 @@ while read version;do done mount -o bind /system/bin/adbd /sbin/adbd -if getprop ro.hardware |grep -q kirin970;then +if ( getprop ro.hardware | grep -q kirin970 ) || ( getprop ro.hardware | grep -q hi6250 );then setprop persist.sys.bt_acl_bypass true fi