Example uninstall.sh:
#!/system/bin/sh
for POL in /sys/devices/system/cpu/cpufreq/policy*; do
if [ -w "$POL/scaling_governor" ]; then
echo "ondemand" > "$POL/scaling_governor"
fi
if [ -w "$POL/scaling_max_freq" ]; then
# remove custom value by writing the highest available or leave as-is; simplest: reboot required
true
fi
done
reboot
Do not use a module that doesn't explicitly mention voltage tables. If a module overclocks without undervolting, it is dangerous. overclocking magisk module better
echo "95" > /sys/devices/system/cpu/cpufreq/performance/governor_tunables/target_loads echo "40000" > /sys/devices/system/cpu/cpufreq/performance/governor_tunables/timer_rate Example uninstall