|
2010-05-11
, 18:30
|
|
Posts: 1,455 |
Thanked: 3,309 times |
Joined on Dec 2009
@ Rochester, NY
|
#3592
|
I don't have nor use Joikuspot but the module is included in my kernel.
I don't know how it works but if it only tries to insmod its own
module for the Nokia kernel then you could manually "modprobe JoikuSpot_Bouncer".
does that work?
|
2010-05-11
, 18:32
|
Posts: 1,751 |
Thanked: 844 times |
Joined on Feb 2010
@ Sweden
|
#3593
|
root
echo 125000 500000 700000 750000 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies
The Following User Says Thank You to AlMehdi For This Useful Post: | ||
|
2010-05-11
, 18:43
|
Posts: 51 |
Thanked: 22 times |
Joined on Jan 2010
|
#3594
|
|
2010-05-11
, 19:54
|
Posts: 1,751 |
Thanked: 844 times |
Joined on Feb 2010
@ Sweden
|
#3595
|
|
2010-05-11
, 20:21
|
Posts: 946 |
Thanked: 1,650 times |
Joined on Oct 2009
@ Germany
|
#3596
|
it shows amongst otherthings avoid frequencies 125,250 and up threshold +75 and sampling frequency at 15000
ignore nice load =1 - what does that mean?
How do i change those settings on this - I'd prefer to not have to edit tables
|
2010-05-11
, 23:52
|
Posts: 1,729 |
Thanked: 388 times |
Joined on Jan 2010
@ Canada
|
#3597
|
Perfect! thankyou very very much for your time it took to reply. very appreciated
|
2010-05-12
, 05:21
|
Posts: 59 |
Thanked: 7 times |
Joined on Jan 2010
|
#3598
|
a new version of my script used to change kernel settings based on battery temperature.
i am sorry for the typo in my last post.
usage instructions.
copy the contents into a file.
chmod +x FILENAME
type sudo :/FILENAME & (while in the same directory)
you can replace the word ideal, with any other profile (starving, xlv, lv or your own)
You can replace the speeds with any speed supported by the kernel
You can change the temperatures (currently 45, and 40)
You can change the frequency of probing (change sleep 30 to sleep 60 if you want it to run every minute).
It should be possible to move the modeprobe command outside the loop, but it does not work on my system.
One word of guidance, at low temperatures you can use lower voltages. When the temperature becomes higher, the same voltage would not work anymore.
Script follows
#!/bin/sh
set old="fhy"
set limits="yyu"
set oldlimits="r"
set new="rrr"
while test 2 -gt 1;
do
modprobe bq27x00_battery
read tmpr </sys/class/power_supply/bq27200-0/temp
if test $tmpr -gt 45;
then new="default";
limits="250 600";
else
if test $tmpr -gt 40;
then new="ideal";
limits="500 600";
else new="ideal";
limits="500 900"
fi
fi
if test "$old" != "$new"
then
/usr/sbin/kernel-config load "$new";
oldlimits="ttt";
old=$new;
fi
if test "$limits" != "$oldlimits";
then
/usr/sbin/kernel-config limits $limits;
oldlimits=$limits;
fi
sleep 30
done
|
2010-05-12
, 06:02
|
Posts: 38 |
Thanked: 13 times |
Joined on Oct 2009
|
#3599
|
i finally manage to make the script work , but how can i check that it really works ?
because i run sygic under the sun for 10minutes , with outside temprature 29 celsious , and my phone continue to run with max 900
, is there any program for checking my cpu temprature?
|
2010-05-12
, 06:07
|
Posts: 38 |
Thanked: 13 times |
Joined on Oct 2009
|
#3600
|
|
You should have the kernel-power-maemo27 and kernel-power-settings v0.8.
While root you could do if you have installed Titans kernel previously:
Last edited by AlMehdi; 2010-05-11 at 18:34.