diff options
author | Giulio Cervera <giulio.cervera@cyanogenmod.org> | 2014-04-27 17:08:47 +0200 |
---|---|---|
committer | Giulio Cervera <giulio.cervera@cyanogenmod.org> | 2014-05-02 19:08:48 +0200 |
commit | 8edd398f912a5f3572430dec7e2260d6ea3d48ad (patch) | |
tree | b0a702c8856a826ad4105764618e1536f3a5835e /overlay | |
parent | 29075a7e17419803ed6e301f70ab5758c648af83 (diff) |
shinano: update wifi and bt
shinano use broadcom wlan instead of qcom
Diffstat (limited to 'overlay')
-rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index c4a60d7..3d0530e 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -97,13 +97,20 @@ <item>0</item> </integer-array> + <!-- List of regexpressions describing the interface (if any) that represent tetherable + USB interfaces. If the device doesn't want to support tething over USB this should + be empty. An example would be "usb.*" --> <string-array translatable="false" name="config_tether_usb_regexs"> - <item>"usb\\d"</item> - <item>"rndis\\d"</item> + <item>"usb\\d"</item> + <item>"rndis\\d"</item> </string-array> + <!-- List of regexpressions describing the interface (if any) that represent tetherable + Wifi interfaces. If the device doesn't want to support tethering over Wifi this + should be empty. An example would be "softap.*" --> <string-array translatable="false" name="config_tether_wifi_regexs"> <item>"wlan0"</item> + <item>"softap.*"</item> </string-array> <!-- List of regexpressions describing the interface (if any) that represent tetherable @@ -129,6 +136,9 @@ <!-- Boolean indicating whether the wifi chipset has dual frequency band support --> <bool translatable="false" name="config_wifi_dual_band_support">true</bool> + <!-- Wifi driver supports batched scan --> + <bool translatable="false" name="config_wifi_batched_scan_supported">true</bool> + <!-- reference volume index for music stream to limit headphone volume and display warning --> <integer name="config_safe_media_volume_index">7</integer> |