Update: You can now adjust these settings with the updated CPU Tuner app. Use this link or e.g. the barcode from this page from your Android browser to download it.
Conservative:
up_threshold: 98
down_threshold: 95
Ondemand:
up_threshold: 98
How all I had to do is root my droid and run one of these scripts:
Conservative:
#!/system/bin/sh
cd /sys/devices/system/cpu/cpu0/cpufreq/
echo -n Governor:
cat scaling_governor
echo Setting to conservative.
echo conservative > scaling_governor
cd conservative
echo -n Up Threshold:
cat up_threshold
echo Setting to 98.
echo 98 > up_threshold
echo -n Down Threshold:
cat down_threshold
echo Setting to 95.
echo 95 > down_threshold
Ondemand:
#!/system/bin/sh
cd /sys/devices/system/cpu/cpu0/cpufreq/
echo -n Governor:
cat scaling_governor
echo Setting to ondemand.
echo ondemand > scaling_governor
cd ondemand
echo -n up_threshold:
cat up_threshold
echo Setting to 98.
echo 98 > up_threshold
And the settings are perfect. Ondemand is a little faster and more responsive in my experience. The changes to the conservative governor seem to make quite a difference in battery time when it's used a lot is my feeling. Check it out and let me know what you think. All you need is root and a terminal. Copy the files to your sdcard and then run them from there. Attention: the scripts must be formatted in unix format, not with dos line breaks. And of course you can and should also use these settings on your Notebooks, Netbooks, Tablets and everything else running Linux.
All I'd need now is to put it on the app market for lots of money. ;-)
Any hints how to put a script on the app market?
If you liked this article, you might want to subscribe for more.
What do the shell commands do????
ReplyDeleteWhat do the shell command do. What are differences between them .??
ReplyDeleteThank you
I dint read the part ,they don't appear till you've read them lol