summaryrefslogtreecommitdiffstats
path: root/overlay
diff options
context:
space:
mode:
authorMatthew Xie <mattx@google.com>2011-05-18 17:01:15 -0700
committerMatthew Xie <mattx@google.com>2011-05-18 17:01:15 -0700
commit59487e7af060507cdf3d49f64cc77c68410db1c8 (patch)
tree1cb83317aaf2b98e2f4e8f88fc03b004bab05ebc /overlay
parentc71c6233a368478224a13d09e039bc75688c3776 (diff)
downloaddevice_samsung_crespo-59487e7af060507cdf3d49f64cc77c68410db1c8.zip
device_samsung_crespo-59487e7af060507cdf3d49f64cc77c68410db1c8.tar.gz
device_samsung_crespo-59487e7af060507cdf3d49f64cc77c68410db1c8.tar.bz2
Enable Bluetooth tethering for crespo
Add Bluetooth in radio and network attributes. Add bluetooth as one of the tethering interface. Bug 4404262 Change-Id: Ic3eecb6f24a5b43c87006edfce8f1f6fba29b767
Diffstat (limited to 'overlay')
-rw-r--r--overlay/frameworks/base/core/res/res/values/config.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
index 05ca381..0aa6af4 100644
--- a/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/overlay/frameworks/base/core/res/res/values/config.xml
@@ -126,6 +126,18 @@
<item>"mobile_supl,3,0,2,60000,true"</item>
<item>"mobile_dun,4,0,4,60000,true"</item>
<item>"mobile_hipri,5,0,3,60000,true"</item>
+ <item>"bluetooth,7,7,0,-1,true"</item>
+ </string-array>
+
+ <!-- This string array should be overridden by the device to present a list of radio
+ attributes. This is used by the connectivity manager to decide which networks can coexist
+ based on the hardware -->
+ <!-- An Array of "[ConnectivityManager connectionType],
+ [# simultaneous connection types]" -->
+ <string-array translatable="false" name="radioAttributes">
+ <item>"1,1"</item>
+ <item>"0,1"</item>
+ <item>"7,1"</item>
</string-array>
<!-- List of regexpressions describing the interface (if any) that represent tetherable
@@ -149,6 +161,12 @@
<item>"wl0.1"</item>
</string-array>
+ <!-- List of regexpressions describing the interface (if any) that represent tetherable
+ bluetooth interfaces. If the device doesn't want to support tethering over bluetooth this
+ should be empty. -->
+ <string-array translatable="false" name="config_tether_bluetooth_regexs">
+ <item>"bnep\\d"</item>
+ </string-array>
<!-- Boolean indicating if we require the use of DUN on mobile for tethering -->
<bool translatable="false" name="config_tether_dun_required">false</bool>