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
This commit is contained in:
parent
31b29d8e36
commit
c3da4cec90
2 changed files with 9 additions and 3 deletions
8
overlay/frameworks/base/core/res/res/values/config.xml
Executable file → Normal file
8
overlay/frameworks/base/core/res/res/values/config.xml
Executable file → Normal file
|
@ -34,4 +34,12 @@
|
||||||
<integer name="config_sms_authorization_timeout_ms">15000</integer>
|
<integer name="config_sms_authorization_timeout_ms">15000</integer>
|
||||||
<!-- Enable SMS authorization support -->
|
<!-- Enable SMS authorization support -->
|
||||||
<bool name="config_sms_authorization_enabled">true</bool>
|
<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>
|
</resources>
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
TARGET_USES_AOSP := true
|
TARGET_USES_AOSP := true
|
||||||
|
|
||||||
ifneq ($(TARGET_USES_AOSP),true)
|
|
||||||
DEVICE_PACKAGE_OVERLAYS := device/qcom/sdm660_64/overlay
|
DEVICE_PACKAGE_OVERLAYS := device/qcom/sdm660_64/overlay
|
||||||
endif
|
|
||||||
|
|
||||||
# Default vendor configuration.
|
# Default vendor configuration.
|
||||||
ifeq ($(ENABLE_VENDOR_IMAGE),)
|
ifeq ($(ENABLE_VENDOR_IMAGE),)
|
||||||
|
|
Loading…
Reference in a new issue