0% found this document useful (0 votes)
94 views4 pages

Bondan

This script configures several system settings to optimize performance on the device. It sets the CPU governor to performance mode, enables GPU and CPU boosting features, prioritizes certain codecs, and tweaks additional settings for thermal control and CPU scheduling to further boost performance.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
94 views4 pages

Bondan

This script configures several system settings to optimize performance on the device. It sets the CPU governor to performance mode, enables GPU and CPU boosting features, prioritizes certain codecs, and tweaks additional settings for thermal control and CPU scheduling to further boost performance.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

cuakss

#!/system/bin/sh

# This script will be executed in post-fs-data mode

#cpu Performance Boost

write /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor/performance

write /sys/devices/system/cpu/cpufreq/performance/go_hispeed_load/75

write /sys/devices/system/cpu/cpufreq/performance/above_hispeed_delay/0

write /sys/devices/system/cpu/cpufreq/performance/boost/1

write /sys/module/msm_performance/parameters/touchboost/1

write /sys/devices/system/cpu/cpufreq/performance/max_freq_hysteresis/1

write /sys/devices/system/cpu/cpufreq/performance/align_windows/1

write /sys/devices/soc/1c00000.qcom,kgsl-3d0/devfreq/1c00000.qcom,kgsl-3d0/governor performance

write /sys/class/kgsl/kgsl-3d0/devfreq/governor msm-adreno-tz

write /sys/module/adreno_idler/parameters/adreno_idler_active/0

write /sys/module/lazyplug/parameters/nr_possible_cores/8

write /dev/cpuset/foreground/cpus/0-3,4-7

write /dev/cpuset/foreground/boost/cpus/4-7

write /dev/cpuset/top-app/cpus/0-7

#"android@render-"OpenGL2.0" Proccesed SystemType:64bit

#"bootcpucore:8core GraphicApi OpenGL 2.0

#Starting

#4XMSAA TextureQuality

#Support Graphic Api OpenGL 2.0 3.0 ()Vulkan API

#VFPv3-D32 Starting Checking Your GPU FrameWork

#RayTracing Started ---------------------


#Failed Your GPU Dont Support RayTracing

#Enchant --- Graphic

#DGX-v2 Graphic Enchanted----

#Log buffer 0

#StartingNewProgram

#Checking CPU ClockSpeed

#Boosting ......

#Boost Your CPU ClockSpeed Success

#Supported CPU Qualcomm , Mediatek

#TurboBoost 2.0 Success

#Delete Cache To Get Better Perfomance--

write /sys/devices/ro.media.dec.jpeg.memcap=8000000

write /sys/devices/ro.media.enc.hprof.vid.bps=8000000

write /sys/devices/persist.sys.NV_FPSLIMIT=60

write /sys/devices/sys.hwc.gpu_perf_mode=1

write /sys/devices/ro.media.dec.aud.wma.enabled=1

write /sys/devices/ro.media.dec.vid.wmv.enabled=1

write /sys/devices/ro.media.codec_priority_for_thumb=so

write /sys/devices/debug.sf.recomputecrop=0

write /sys/devices/hwui.use_gpu_pixel_buffers=true

# Perf

write /sys/devices/ro.vendor.qti.core.ctl_max_cpu=4

write /sys/devices/ro.vendor.qti.core.ctl_min_cpu=2
# Other Setting

write /sys/devices/ro.ril.hep=1

write /sys/devices/ro.ril.def.agps.feature=1

write /sys/devices/ro.ril.enable.a53=1

write /sys/devices/ro.ril.enable.3g.prefix=1

setenforce 0

stop logd

stop thermald

ec

m/cpu/sched/cpu_prefer;

echo boost > /sys/devices/system/cpu/sched/sched_boost;

echo '1' > /sys/devices/system/cpu/eas/enable;

echo 'boost' > /sys/devices/system/cpu/sched/sched_boost;

echo '3' > /proc/cpufreq/cpufreq_power_mode;

echo '1' > /proc/cpufreq/cpufreq_imax_enable;

echo '0' > /proc/cpufreq/cpufreq_imax_thermal_protect;

echo '1' > /sys/devices/system/cpu/perf/enable;

chmod '0644' > /sys/devices/system/cpu/perf/enable;

sleep 0.2

echo '35' > /dev/stune/foreground/schedtune.boost;

chmod '0444' /dev/stune/foreground/schedtune.boost;

echo '1' > /proc/cpufreq/cpufreq_cci_mode;

chmod '0444' /proc/cpufreq/cpufreq_cci_mode;

echo '11000' > /sys/class/touch/switch/set_touchscreen;


echo '13060' > /sys/class/touch/switch/set_touchscreen;

echo '14005' > /sys/class/touch/switch/set_touchscreen;

echo '7035' > /sys/class/touch/switch/set_touchscreen;

echo '8002' > /sys/class/touch/switch/set_touchscreen;

done

#Complete CPU Cont

You might also like