12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- Copyright (C) 2024 The LineageOS Project
- SPDX-License-Identifier: Apache-2.0
- -->
- <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
- <!-- 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" translatable="false">true</bool>
- <!-- boolean indicating whether the WiFi chipset has 6GHz band support -->
- <bool name="config_wifi6ghzSupport" translatable="false">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" translatable="false">true</bool>
- <!-- Boolean indicating performing a partial initial scan is enabled -->
- <bool name="config_wifiEnablePartialInitialScan" translatable="false">true</bool>
- <!-- Wifi driver supports Automatic channel selection (ACS) for softap -->
- <bool name="config_wifi_softap_acs_supported" translatable="false">true</bool>
- <!-- Wifi driver supports IEEE80211AX for softap -->
- <bool name="config_wifiSoftapIeee80211axSupported" translatable="false">true</bool>
- <!-- Wifi driver supports IEEE80211AX single user beamformer for softap -->
- <bool name="config_wifiSoftapHeSuBeamformerSupported" translatable="false">true</bool>
- <!-- Wifi driver supports IEEE80211AX single user beamformee for softap -->
- <bool name="config_wifiSoftapHeSuBeamformeeSupported" translatable="false">true</bool>
- <!-- Wifi driver supports 6GHz band for softap when chip support 6GHz -->
- <bool name="config_wifiSoftap6ghzSupported" translatable="false">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>
- <!-- Indicates that SAE Hash-to-Element is supported on this device -->
- <bool name="config_wifiSaeH2eSupported" translatable="false">true</bool>
- <!-- Indicates whether or not the WLAN driver supports the NL80211_CMD_REG_CHANGE or
- NL80211_CMD_WIPHY_REG_CHANGE events which indicate the current country code which is
- being used by the WLAN driver. If the driver doesn't support these events
- (configuration is `false`) then the driver must handle the setCountryCode request from
- HAL as a blocking call. In such a case the country code will be applied
- immediately after the country code is sent to the driver (if the method returns a
- success). -->
- <bool name="config_wifiDriverSupportedNl80211RegChangedEvent" translatable="false">true</bool>
- <!-- Indicates whether or not the Soft AP needs to be restarted when country code changed -->
- <bool name="config_wifiForcedSoftApRestartWhenCountryCodeChanged" translatable="false">false</bool>
- </resources>
|