diff options
author | Pavan Kumar M <rpavan@codeaurora.org> | 2017-06-22 15:41:30 +0530 |
---|---|---|
committer | Pavan Kumar M <rpavan@codeaurora.org> | 2017-08-08 21:42:38 +0530 |
commit | c3da4cec90fbf6b0dbe0225930c81335519e503c (patch) | |
tree | 02808929a2303fbbafef9ec0dc211d8d1379d613 /overlay/frameworks | |
parent | 31b29d8e36361c0b9d1a750025fdc30e6249fe0c (diff) |
Overlay changes for STA+SAP support
config_tether_wifi_regexs need to be customized
based on feature set supported for different targets.
softap0 will be default interface for STA+SAP supported
targets. Other targtes will have wlan0 as default interface.
CRs-Fixed: 2087745
Change-Id: If1f0af51f7ec46e116d96d9164b4ffee9751ced2
Diffstat (limited to 'overlay/frameworks')
-rw-r--r--[-rwxr-xr-x] | overlay/frameworks/base/core/res/res/values/config.xml | 8 |
1 files changed, 8 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 fea8214..ae64c3e 100755..100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -34,4 +34,12 @@ <integer name="config_sms_authorization_timeout_ms">15000</integer> <!-- Enable SMS authorization support --> <bool name="config_sms_authorization_enabled">true</bool> + + <!-- 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>"wigig0"</item> + <item>"softap0"</item> + </string-array> </resources> |