Reason - although it DOES HAVE TEMPERATURE SENSOR (some guys said it didn't) it is NOT USING IT.
Solution - I wrote the script below that will lower the speed if it gets to hot - mine crashes at 123 degrees celsius so I limited it to 115. Change the limit to whatever suits you

Save the script below as cpucontrol.sh in your sdcard
and run this command on an android terminal (might work with adb but I never used it)
su -c 'watch -n 10 "sh /sdcard/cpucontrol.sh"' 2>/dev/null 1>/dev/null &
#!/system/bin/sh # This script will control the CPU frequency, increasing to maximum if temperature below limit # and decreasing to minimum if temperature surpasses the limit # First we obtain the current temperature and parse the data to variable temp temp=$(cat /sys/module/tsadc/parameters/temp0 | awk '{print $2}') # Next we assign a limit for our maximum temperature limit=115 # And we set our cpu governor to powersave because we need a governor with fixed cpu speed # Many changes needed to the script if using performance or another governor. echo "powersave" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor # Now we set our condition - if temperature is greater than the limit, send message to decrease cpu speed if [[ "$temp" -gt "$limit" ]] ; then echo "252000" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq & cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq # If temperature is still below limit, increase cpu speed else echo "1416000" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq & echo "1416000" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq & cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq fi
su -c 'watch -n 5 cat /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_cur_freq /sys/module/tsadc/parameters/temp*'
echo "This is a stress test on the cpu" for i in 1 2 ; do while : ; do : ; done & done
kill 4444 4445

By the way, if someone knows how to put this in init.d so it starts at every boot, please tell me. I've tried and failed... Maybe my rom doesn't have perfect init.d support - Prajister 1.0...
Comment