So where is this easier overclocking you speak of?
edit /system/etc/init.d/99complete
you'll have to uncomment the freq lines, and plug in your wanted min/max frequencies.
your 99complete:
Code:
#!/system/bin/sh
ln -s /mnt/sdcard /data/sd
sync;
#set cpu max frequency here (don't forget to uncomment)
#echo XX0000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
#set cpu min frequency here (don't forget to uncomment)
#echo XX0000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
#set cpu governor here (don't forget to uncomment)
#echo XX0000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
setprop cm.filesystem.ready 1;
setprop dc.filesystem.ready 1;
Properly edited 99complete for a 1ghz slayher kernel (for example) at 1000/250 with an interactive governor:
Code:
#!/system/bin/sh
ln -s /mnt/sdcard /data/sd
sync;
#set cpu max frequency here (don't forget to uncomment)
echo 1000000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
#set cpu min frequency here (don't forget to uncomment)
echo 250000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
#set cpu governor here (don't forget to uncomment)
echo interactive > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
setprop cm.filesystem.ready 1;
setprop dc.filesystem.ready 1;
Hey xformulax, or anyone else who might know the answer. So I have setcpu running with P3 1.25 kernel. I have setcpu set at 850 mhz as my max and whenever I open setcpu up, it reads as 1000mhz max even though the slider says 850. Is the above quote the way to fix this? if so,
where it says "#set cpu frequency here dont forget to uncomment" do I have to type that word for word minus the "dont forget to uncomment"? and what does uncomment mean? I've never had to do this so Im sorry for the hassle. If this isnt the way to fix the discrepancy in Setcpu does anyone know how?