summaryrefslogtreecommitdiff
path: root/rro_overlays
diff options
context:
space:
mode:
authorLes Lee <lesl@google.com>2021-10-27 16:55:48 +0800
committerLes Lee <lesl@google.com>2021-11-02 02:45:41 +0000
commitf8d1b3f0cb273e79b33f27faba49157cba79e990 (patch)
treef861002b4927049e7965f0ffbd3b9798b6d828ef /rro_overlays
parent156d28682b141404bc09500c6506bd1b66363900 (diff)
downloadgs101-f8d1b3f0cb273e79b33f27faba49157cba79e990.tar.gz
GS101: Correct overlay configuration
The P21 series didn't support the NL80211 Reg event. The vendor is working to support it in T. (b/183916225) The fix corrects the overlay configuration, which introduced from android T. PS: The impact of the configuration is two cases. 1. Configuration should be false but it configures to true: It will cause no CC(country code) changed event to notify listener. It might cause any function fail which relies on CC. (It is happening on P21 series) 2. Configuration should be true but it configures to false: Minor impact than #1 because it just update CC before the Wifi subsystem apply it.5. It might cause the data to be incorrect because of the timing issue. Bug: 183916225 Test: Manuel Test to check that configuration is correct. Change-Id: Ica764e4a22def6dea0613882b3ae403852a03a83
Diffstat (limited to 'rro_overlays')
-rw-r--r--rro_overlays/WifiOverlay/res/values/config.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/rro_overlays/WifiOverlay/res/values/config.xml b/rro_overlays/WifiOverlay/res/values/config.xml
index 4e5d4bfc..090df9e7 100644
--- a/rro_overlays/WifiOverlay/res/values/config.xml
+++ b/rro_overlays/WifiOverlay/res/values/config.xml
@@ -132,4 +132,7 @@
<bool translatable="false" name="config_wifiDefaultCoexAlgorithmEnabled">true</bool>
<!-- Whether to use the explicit vendor HAL API: IWifiStaIface.setRoamingState for disabling fw roaming. -->
<bool translatable="false" name="config_wifiUseHalApiToDisableFwRoaming">true</bool>
+
+ <!-- Indicate the driver doesn't support NL80211 Reg changed event -->
+ <bool translatable="false" name="config_wifiDriverSupportedNl80211RegChangedEvent">false</bool>
</resources>