59 lines
1.8 KiB
Makefile
59 lines
1.8 KiB
Makefile
#
|
|
# Copyright (C) 2018 The LineageOS Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
# Audio
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
audio.offload.min.duration.secs=30 \
|
|
persist.vendor.audio.hac.enable=false \
|
|
persist.vendor.audio_hal.dsp_bit_width_enforce_mode=24
|
|
|
|
# Display
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
debug.gralloc.gfx_ubwc_disable=0 \
|
|
debug.sf.latch_unsignaled=1 \
|
|
sdm.debug.prefersplit=1
|
|
|
|
# IOP
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
iop.enable_prefetch_ofr=1 \
|
|
iop.enable_uxe=0
|
|
|
|
# Perf
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
ro.vendor.qti.core_ctl_max_cpu=4 \
|
|
ro.vendor.qti.core_ctl_min_cpu=2
|
|
|
|
# Radio
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
persist.vendor.radio.data_con_rprt=0 \
|
|
persist.vendor.radio.data_ltd_sys_ind=1 \
|
|
persist.vendor.radio.force_on_dc=true \
|
|
persist.vendor.radio.ignore_dom_time=10 \
|
|
ro.telephony.default_network=22,20
|
|
|
|
# Netmgr
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
persist.data.df.agg.dl_pkt=10 \
|
|
persist.data.df.agg.dl_size=4096 \
|
|
persist.data.df.dl_mode=5 \
|
|
persist.data.df.iwlan_mux=9 \
|
|
persist.data.df.mux_count=8 \
|
|
persist.data.df.ul_mode=5 \
|
|
persist.data.iwlan.enable=true \
|
|
persist.data.mode=concurrent \
|
|
persist.data.netmgrd.qos.enable=true \
|
|
persist.data.wda.enable=true \
|
|
persist.rmnet.data.enable=true
|