|
2010-04-29
, 19:16
|
Posts: 202 |
Thanked: 30 times |
Joined on Mar 2010
@ CZE
|
#3372
|
Hey guys,
I thought I'd run into more problems, but I guess waiting a month or two paid off? I installed Titan's kernel through the app manager and am using queen beecon to "activate" the 1ghz OC. I probably shouldn't push the OC any further, considering my inexperience. I'm glad it's running, snappier, with no problem.
Thanks for all the work that's been put into this thus far!
|
2010-04-29
, 19:22
|
|
Posts: 257 |
Thanked: 51 times |
Joined on Dec 2009
|
#3373
|
The current kernels that are there on my site are built from the source that comes with PR1.2 SDK. If they release a newer kernel source I might just build the more popular ones with the newer source. This is all just a big IF for now. For sure I will build a newer source with the ULV settings in future when a newer source is available... but what comes to the 125mhz - XXXmhz, they wont happen. I wont be going back to the tacky 125 or 250mhz idle speeds. They reduce a lot of response from the machine.
|
2010-04-29
, 23:10
|
Posts: 223 |
Thanked: 79 times |
Joined on Apr 2010
@ Lebanon- Beirut
|
#3374
|
|
2010-04-30
, 04:46
|
Posts: 310 |
Thanked: 383 times |
Joined on Jan 2010
|
#3375
|
i've installed the new kernel and did the command for ulv. is there a way to know if it worked?
#!/bin/sh modprobe bq27x00_battery echo -n "Temp:" cat /sys/devices/platform/omap34xx_temp/temp1_input echo -n "Battery draw: " cat /sys/class/power_supply/bq27200-0/current_now | perl -e 'printf ("%dmA\n", <> * 0.2);' echo '' echo "Frequency stats:" cat /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state
The Following 2 Users Say Thank You to nightfire For This Useful Post: | ||
|
2010-04-30
, 09:06
|
Posts: 223 |
Thanked: 79 times |
Joined on Apr 2010
@ Lebanon- Beirut
|
#3376
|
I wrote a little helper script that pulls all the important stats & data:
Just fire that into a script (cat > info.sh && chmod 755 info.sh) and give it a run. It shows time in state, temperature, battery draw, etc.Code:#!/bin/sh modprobe bq27x00_battery echo -n "Temp:" cat /sys/devices/platform/omap34xx_temp/temp1_input echo -n "Battery draw: " cat /sys/class/power_supply/bq27200-0/current_now | perl -e 'printf ("%dmA\n", <> * 0.2);' echo '' echo "Frequency stats:" cat /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state
|
2010-04-30
, 09:45
|
Posts: 2 |
Thanked: 10 times |
Joined on Apr 2010
|
#3377
|
|
2010-04-30
, 12:00
|
Posts: 38 |
Thanked: 13 times |
Joined on Oct 2009
|
#3378
|
Hello Friends!
I'm Using Kernel Maemo XLV 21.
I set my PMCONFIG 850MHz Minimum, Maximum 1.15Ghz
This all works very well!
So have a problem, when I received a call Minimo Back to 500Mhz.
What should I do for this not to happen
what can I do to get Clock fixed at 850Mhz - 1.15Ghz even when receiving a phone call?
|
2010-04-30
, 12:17
|
Posts: 309 |
Thanked: 456 times |
Joined on Jan 2010
|
#3379
|
<menuitem priority="5" name="Top in XTerm"> <callback service="com.nokia.xterm" path="/com/nokia/xterm" interface="com.nokia.xterm" method="run_command" bus="session" autostart="true"> <argument type="string">/usr/bin/top</argument> </callback> </menuitem>
<menuitem priority="500" name="Default 600Mhz"> <callback service="com.nokia.xterm" path="/com/nokia/xterm" interface="com.nokia.xterm" method="run_command" bus="session" autostart="true"> <argument type="string">kernel-load /usr/share/kernel-power-settings/xlv</argument> </callback> </menuitem> <menuitem priority="500" name="Overclock 800Mhz"> <callback service="com.nokia.xterm" path="/com/nokia/xterm" interface="com.nokia.xterm" method="run_command" bus="session" autostart="true"> <argument type="string">kernel-load /usr/share/kernel-power-settings/ideal</argument> </callback> </menuitem>
The Following User Says Thank You to [DarkGUNMAN] For This Useful Post: | ||
|
2010-04-30
, 12:53
|
Posts: 47 |
Thanked: 22 times |
Joined on Apr 2010
|
#3380
|
I'm trying to make changing the clock frequencies easier by adding settings to the Power Key menu in /etc/systemui/systemui.xml.
I adapted the entry for Top as this runs an xterm command..
Only problem I have is I don't have the full path required to the kernel-load binary.. at least I'm guessing I need this to run a command and arguements..Code:<menuitem priority="5" name="Top in XTerm"> <callback service="com.nokia.xterm" path="/com/nokia/xterm" interface="com.nokia.xterm" method="run_command" bus="session" autostart="true"> <argument type="string">/usr/bin/top</argument> </callback> </menuitem>
Anyone got the path for the kernel-load command?Code:<menuitem priority="500" name="Default 600Mhz"> <callback service="com.nokia.xterm" path="/com/nokia/xterm" interface="com.nokia.xterm" method="run_command" bus="session" autostart="true"> <argument type="string">kernel-load /usr/share/kernel-power-settings/xlv</argument> </callback> </menuitem> <menuitem priority="500" name="Overclock 800Mhz"> <callback service="com.nokia.xterm" path="/com/nokia/xterm" interface="com.nokia.xterm" method="run_command" bus="session" autostart="true"> <argument type="string">kernel-load /usr/share/kernel-power-settings/ideal</argument> </callback> </menuitem>
|
I thought I'd run into more problems, but I guess waiting a month or two paid off? I installed Titan's kernel through the app manager and am using queen beecon to "activate" the 1ghz OC. I probably shouldn't push the OC any further, considering my inexperience. I'm glad it's running, snappier, with no problem.
Thanks for all the work that's been put into this thus far!