Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 56135619 authored by Rohit Sekhar's avatar Rohit Sekhar Committed by Michael Bestas
Browse files

FP5: overlay: Kang WifiResTarget from oneplus/sm8350-common

Change-Id: I4ca9e378b968a4f6aee15fad2d9bb01460314e46
parent 349a6be7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -310,7 +310,8 @@ PRODUCT_PACKAGES += \
    SystemUIResCommon \
    SystemUIResTarget \
    TelephonyResCommon \
    WifiResCommon
    WifiResCommon \
    WifiResTarget

# Partitions
PRODUCT_USE_DYNAMIC_PARTITIONS := true
+9 −0
Original line number Diff line number Diff line
//
// SPDX-FileCopyrightText: 2022 The LineageOS Project
// SPDX-License-Identifier: Apache-2.0
//

runtime_resource_overlay {
    name: "WifiResTarget",
    vendor: true,
}
+14 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     SPDX-FileCopyrightText: 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.target">

    <overlay
        android:isStatic="true"
        android:priority="250"
        android:targetName="WifiCustomization"
        android:targetPackage="com.android.wifi.resources" />
</manifest>
+32 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     SPDX-FileCopyrightText: 2022 The Linux Foundation
     SPDX-License-Identifier: BSD-3-Clause
-->
<resources>
    <!-- Boolean indicating performing a partial initial scan is enabled -->
    <bool name="config_wifiEnablePartialInitialScan">true</bool>

    <!-- Wifi driver supports IEEE80211AX single user beamformee for softap -->
    <bool name="config_wifiSoftapHeSuBeamformeeSupported">true</bool>

    <!-- Wifi driver supports IEEE80211AX single user beamformer for softap -->
    <bool name="config_wifiSoftapHeSuBeamformerSupported">true</bool>

    <!-- Wifi driver supports IEEE80211AX for softap -->
    <bool name="config_wifiSoftapIeee80211axSupported">true</bool>

    <!-- boolean indicating whether the WiFi chipset has 6GHz band support -->
    <bool name="config_wifi6ghzSupport">true</bool>

    <!-- Wifi driver supports 6GHz band for softap when chip support 6GHz -->
    <bool name="config_wifiSoftap6ghzSupported">true</bool>

    <!-- Configure wifi tcp buffersizes in the form:
         rmem_min,rmem_def,rmem_max,wmem_min,wmem_def,wmem_max -->
    <string name="config_wifi_tcp_buffers" translatable="false">524288,1048576,2097152,524288,1048576,4194304</string>

    <!-- Enable concurrent restricted connectivity + internet connectivity
         Note: this is conditional on the device supporting dual concurrent STAs. -->
    <bool name="config_wifiMultiStaRestrictedConcurrencyEnabled">true</bool>
</resources>