config.xml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright (C) 2024 The LineageOS Project
  4. SPDX-License-Identifier: Apache-2.0
  5. -->
  6. <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
  7. <!-- boolean indicating whether the WiFi chipset has 5GHz band support.
  8. Note: This config is replacing the config_wifi_dual_band_support
  9. since more bands may now be supported (such as 6GHz), the naming dual_band
  10. is no longer indicative, and a separate config now exists for each band -->
  11. <bool name="config_wifi5ghzSupport" translatable="false">true</bool>
  12. <!-- boolean indicating whether the WiFi chipset has 6GHz band support -->
  13. <bool name="config_wifi6ghzSupport" translatable="false">true</bool>
  14. <!-- Boolean indicating whether the wifi chipset supports background scanning mechanism.
  15. This mechanism allows the host to remain in suspend state and the dongle to actively
  16. scan and wake the host when a configured SSID is detected by the dongle. This chipset
  17. capability can provide power savings when wifi needs to be always kept on. -->
  18. <bool name="config_wifi_background_scan_support" translatable="false">true</bool>
  19. <!-- Boolean indicating performing a partial initial scan is enabled -->
  20. <bool name="config_wifiEnablePartialInitialScan" translatable="false">true</bool>
  21. <!-- Wifi driver supports Automatic channel selection (ACS) for softap -->
  22. <bool name="config_wifi_softap_acs_supported" translatable="false">true</bool>
  23. <!-- Wifi driver supports IEEE80211AX for softap -->
  24. <bool name="config_wifiSoftapIeee80211axSupported" translatable="false">true</bool>
  25. <!-- Wifi driver supports IEEE80211AX single user beamformer for softap -->
  26. <bool name="config_wifiSoftapHeSuBeamformerSupported" translatable="false">true</bool>
  27. <!-- Wifi driver supports IEEE80211AX single user beamformee for softap -->
  28. <bool name="config_wifiSoftapHeSuBeamformeeSupported" translatable="false">true</bool>
  29. <!-- Wifi driver supports 6GHz band for softap when chip support 6GHz -->
  30. <bool name="config_wifiSoftap6ghzSupported" translatable="false">true</bool>
  31. <!-- Configure wifi tcp buffersizes in the form:
  32. rmem_min,rmem_def,rmem_max,wmem_min,wmem_def,wmem_max -->
  33. <string name="config_wifi_tcp_buffers" translatable="false">524288,1048576,2097152,524288,1048576,4194304</string>
  34. <!-- Indicates that SAE Hash-to-Element is supported on this device -->
  35. <bool name="config_wifiSaeH2eSupported" translatable="false">true</bool>
  36. <!-- Indicates whether or not the WLAN driver supports the NL80211_CMD_REG_CHANGE or
  37. NL80211_CMD_WIPHY_REG_CHANGE events which indicate the current country code which is
  38. being used by the WLAN driver. If the driver doesn't support these events
  39. (configuration is `false`) then the driver must handle the setCountryCode request from
  40. HAL as a blocking call. In such a case the country code will be applied
  41. immediately after the country code is sent to the driver (if the method returns a
  42. success). -->
  43. <bool name="config_wifiDriverSupportedNl80211RegChangedEvent" translatable="false">true</bool>
  44. <!-- Indicates whether or not the Soft AP needs to be restarted when country code changed -->
  45. <bool name="config_wifiForcedSoftApRestartWhenCountryCodeChanged" translatable="false">false</bool>
  46. </resources>