Merge "Bluetooth: Add DUN support for APQ8084 target"

This commit is contained in:
Linux Build Service Account 2014-01-24 04:10:46 -08:00 committed by Gerrit - the friendly Code Review server
commit ab203123de
1 changed files with 9 additions and 2 deletions

View File

@ -103,7 +103,15 @@ config_bt ()
setprop ro.qualcomm.bluetooth.map true setprop ro.qualcomm.bluetooth.map true
setprop ro.qualcomm.bluetooth.nap true setprop ro.qualcomm.bluetooth.nap true
setprop ro.bluetooth.sap true setprop ro.bluetooth.sap true
setprop ro.bluetooth.dun false case $target in
"apq8084")
setprop ro.bluetooth.dun true
logi "Enabling BT-DUN for APQ8084"
;;
*)
setprop ro.bluetooth.dun false
;;
esac
;; ;;
"msm") "msm")
setprop ro.qualcomm.bluetooth.opp true setprop ro.qualcomm.bluetooth.opp true
@ -159,7 +167,6 @@ config_bt ()
elif [ "$btsoc" = "rome" ] elif [ "$btsoc" = "rome" ]
then then
setprop ro.bluetooth.hfp.ver 1.6 setprop ro.bluetooth.hfp.ver 1.6
setprop ro.bluetooth.dun true
fi fi
;; ;;
*) *)