diff options
| author | André Pinela <sheffzor@gmail.com> | 2016-08-15 02:30:25 +0100 |
|---|---|---|
| committer | André Pinela <sheffzor@gmail.com> | 2016-08-15 02:30:25 +0100 |
| commit | 2d2d4f64ee5b7053233423748b1ee7ac59f82d9e (patch) | |
| tree | 3fad42ee7cb18e935be4c1fc5caf1b33eb6fce8d /overlay | |
| parent | d4d7cb18ddf266f35559c1f49c012caf4852e156 (diff) | |
grouper: define tetherable interfaces
Change-Id: Ia850f71ec68a624a4e6c79a1db26912e93712808
Signed-off-by: André Pinela <sheffzor@gmail.com>
Diffstat (limited to 'overlay')
| -rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 25 |
1 files changed, 25 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 bd50d7c..458652b 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -45,10 +45,35 @@ <item>"9,1"</item> </string-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>"rndis0"</item> + </string-array> + <!-- Array of allowable ConnectivityManager network types for tethering --> + <!-- Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or + [0,1,5,7] for TYPE_MOBILE, TYPE_WIFI, TYPE_MOBILE_HIPRI and TYPE_BLUETOOTH --> <integer-array translatable="false" name="config_tether_upstream_types"> + <item>1</item> + <item>7</item> </integer-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> + </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>"bt-pan"</item> + </string-array> + <!-- Boolean indicating whether the wifi chipset supports background scanning mechanism. This mechanism allows the host to remain in suspend state and the dongle to actively scan and wake the host when a configured SSID is detected by the dongle. This chipset |
