oplus: Import cleaned QSSI RROs from LE2115.11.C.48
* Remove anything that the value is already the default, or deprecated. Change-Id: I597a93b580754a7fde51d051accfffca54c22482
This commit is contained in:
9
overlay/qssi/WifiResCommon/Android.bp
Normal file
9
overlay/qssi/WifiResCommon/Android.bp
Normal file
@@ -0,0 +1,9 @@
|
||||
//
|
||||
// Copyright (C) 2022 The LineageOS Project
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
runtime_resource_overlay {
|
||||
name: "WifiResCommon",
|
||||
product_specific: true,
|
||||
}
|
||||
14
overlay/qssi/WifiResCommon/AndroidManifest.xml
Normal file
14
overlay/qssi/WifiResCommon/AndroidManifest.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2022 The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.android.wifi.resources.overlay.common">
|
||||
|
||||
<overlay
|
||||
android:isStatic="true"
|
||||
android:priority="200"
|
||||
android:targetName="WifiCustomization"
|
||||
android:targetPackage="com.android.wifi.resources" />
|
||||
</manifest>
|
||||
61
overlay/qssi/WifiResCommon/res/values/config.xml
Normal file
61
overlay/qssi/WifiResCommon/res/values/config.xml
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2022 The Linux Foundation
|
||||
SPDX-License-Identifier: BSD-3-Clause
|
||||
-->
|
||||
<resources>
|
||||
|
||||
<!-- boolean indicating whether the WiFi chipset has 5GHz band support.
|
||||
Note: This config is replacing the config_wifi_dual_band_support
|
||||
since more bands may now be supported (such as 6GHz), the naming dual_band
|
||||
is no longer indicative, and a separate config now exists for each band -->
|
||||
<bool name="config_wifi5ghzSupport">true</bool>
|
||||
|
||||
<!-- Enable Aware NDP interface selection on interface that already has network set up.
|
||||
Note: the default AOSP Android does not support multiple networks on the same Aware NDI.
|
||||
Enabling this configuration will restore legacy behavior but may result in incorrect behavior.
|
||||
-->
|
||||
<bool name="config_wifiAllowMultipleNetworksOnSameAwareNdi">true</bool>
|
||||
|
||||
<!-- Wifi driver supports 6GHz band for softap when chip support 6GHz -->
|
||||
<bool name="config_wifiSoftap6ghzSupported">true</bool>
|
||||
|
||||
<!-- Wifi driver Automatic channel selection (ACS) for softap to include DFS channels -->
|
||||
<bool name="config_wifiSoftapAcsIncludeDfs">true</bool>
|
||||
|
||||
<!-- 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
|
||||
capability can provide power savings when wifi needs to be always kept on. -->
|
||||
<bool name="config_wifi_background_scan_support">true</bool>
|
||||
|
||||
<!-- Indicates that connected MAC randomization is supported on this device -->
|
||||
<bool name="config_wifi_connected_mac_randomization_supported">true</bool>
|
||||
|
||||
<!-- Boolean indicating that only configurations that have the same pre-shared key will be linked -->
|
||||
<bool name="config_wifi_only_link_same_credential_configurations">false</bool>
|
||||
|
||||
<!-- Indicates that p2p MAC randomization is supported on this device -->
|
||||
<bool name="config_wifi_p2p_mac_randomization_supported">true</bool>
|
||||
|
||||
<!-- Wifi driver supports Automatic channel selection (ACS) for softap -->
|
||||
<bool name="config_wifi_softap_acs_supported">true</bool>
|
||||
|
||||
<!-- Wifi driver supports IEEE80211AC for softap -->
|
||||
<bool name="config_wifi_softap_ieee80211ac_supported">true</bool>
|
||||
|
||||
<!-- Wifi driver supports WPA3 Simultaneous Authentication of Equals (WPA3-SAE) for softap -->
|
||||
<bool name="config_wifi_softap_sae_supported">true</bool>
|
||||
|
||||
<!-- integer indicating additional disconnect delay (in ms) after IMS onLost() indication is received -->
|
||||
<integer name="config_wifiDelayDisconnectOnImsLostMs">1000</integer>
|
||||
|
||||
<!-- Integer indicating maximum hardware supported client number of soft ap -->
|
||||
<integer name="config_wifiHardwareSoftapMaxClientCount">32</integer>
|
||||
|
||||
<!-- List of allowed channels in 2GHz band for softap. If the device doesn't want to restrict
|
||||
channels this should be empty. Values is a comma separated channel string and/or channel
|
||||
range string like '1-6,11'. -->
|
||||
<string name="config_wifiSoftap2gChannelList" />
|
||||
|
||||
</resources>
|
||||
Reference in New Issue
Block a user