Closed Thread
Thread Tools
Posts: 2 | Thanked: 0 times | Joined on Jan 2011
#3401
Hey guys, I have the latest version of CSSU and I'd like to mid overclock my phone to 850MHz. Any idea how to do this ?
 
Posts: 5,795 | Thanked: 3,151 times | Joined on Feb 2007 @ Agoura Hills Calif
#3402
Originally Posted by Char View Post
a "normal" user shouldnt even be using the -devel versions of software
Normal users didn't buy N900s.
__________________
All I want is 40 acres, a mule, and Xterm.
 

The Following 8 Users Say Thank You to geneven For This Useful Post:
Dark_Angel85's Avatar
Posts: 519 | Thanked: 123 times | Joined on Oct 2010 @ Malaysia
#3403
I'll have to admit that even after quite some being in TMO, it's still kinda dodgy sometimes to use the search function. I'll have to do multiple versions of search items or via google and other ways in order to get to the right place (even more if the problem isn't a popular one).

I really don't blame new users for not knowing how to do it. We could just be kind enough to put up a link right after their question to direct them to the wiki. I wouldn't go as far as to search for the relevant post and post the link for them... but at least, if you feel the wiki helps, that can be done... or at least INFORM them that the wiki will help them.

If that's not happening, we could just simply ignore their questions (which generally, developers in this forum have been VERY kind even when questions are repeated) thus they'll have to search until they get used to the search functions.

Nobody needs extra spat or aggravation
__________________
[N900]
1000min 1000max @ ulv
PR1.3 with CSSU latest update
Malaysian N900 user!!!
 

The Following 4 Users Say Thank You to Dark_Angel85 For This Useful Post:
laasonen's Avatar
Posts: 565 | Thanked: 618 times | Joined on Jun 2010 @ Finland
#3404
Originally Posted by iceduck View Post
Hey guys, I have the latest version of CSSU and I'd like to mid overclock my phone to 850MHz. Any idea how to do this ?
Searching is allowed.
 
Posts: 3,664 | Thanked: 1,530 times | Joined on Sep 2009 @ Hamilton, New Zealand
#3405
Originally Posted by iceduck View Post
Hey guys, I have the latest version of CSSU and I'd like to mid overclock my phone to 850MHz. Any idea how to do this ?
Make a shell script so it can automatically load everytimes you start up the device. Instead of making a profile. This way if you running into problem you can still go back to remove the shell script.


Install Kernel_PowerUser v47
Install Kernel Power Obsolete profiles
install dbus-scripts packages

reboot
type in the XTerminal:

sudo gainroot
kernel-config load lv
kernel-config limits 250 850


Important: Test out your device first to see if the setting and the frequency is stable before doing the scripts below.



======Script=====
leafpad /etc/event.d/overclocking

start on started rcS-late
script
kernel-config load lv
kernel-config limits 250 850
end script


===============

You might want to add these scripts to help saving your battery and your processor from overcooked.

Create these files: Xterminal
sudo gainroot

leafpad /etc/modules
bq27x00_battery <<<<<add this line to the end of file.
leafpad /etc/dbus-scripts.d/locked


copy and paste the text in red into it.
/usr/local/bin/underclock * * com.nokia.mce.signal tklock_mode_ind locked

leafpad /etc/dbus-scripts.d/unlocked
/usr/local/bin/overclock * * com.nokia.mce.signal tklock_mode_ind unlocked

leafpad /usr/local/bin/underclock
#!/bin/sh
kernel-config limits 250 500


leafpad /usr/local/bin/overclock
#!/bin/sh
TEMP=`cat /sys/class/power_supply/bq27200-0/temp`
echo "Temp is:" $TEMP "C"
MAXSPEED="850"
if [ $TEMP -gt "43" ] ; then MAXSPEED="850" ; fi
if [ $TEMP -gt "45" ] ; then MAXSPEED="750" ; fi
if [ $TEMP -gt "47" ] ; then MAXSPEED="600" ; fi

BATTERY=`cat /sys/class/power_supply/bq27200-0/capacity`
echo "Battery is:" $BATTERY "% full"
MAXSPEEDTWO=850"
if [ $BATTERY -lt "60" ] ; then MAXSPEEDTWO="850" ; fi
if [ $BATTERY -lt "40" ] ; then MAXSPEEDTWO="600" ; fi
if [ $BATTERY -lt "25" ] ; then MAXSPEEDTWO="500" ; fi

if [ $MAXSPEEDTWO -lt $MAXSPEED ] ; then MAXSPEED=$MAXSPEEDTWO ; fi

echo "Setting max as:" $MAXSPEED "Mhz"

kernel-config limits 250 $MAXSPEED


Edit: forget to adjusting the maximm frequency

Last edited by maxximuscool; 2011-05-05 at 10:33.
 

The Following 2 Users Say Thank You to maxximuscool For This Useful Post:
Maruzko's Avatar
Posts: 145 | Thanked: 44 times | Joined on Jun 2010 @ Sydney
#3406
Originally Posted by tomchiverton View Post
It's not controlling a CSSU feature, so I don't think it would be appropriate.
Ah, good point, I hadn't thought of that.
 
Posts: 2,225 | Thanked: 3,822 times | Joined on Jun 2010 @ Florida
#3407
Originally Posted by maxximuscool View Post
Make a shell script so it can automatically load everytimes you start up the device. Instead of making a profile. This way if you running into problem you can still go back to remove the shell script.
Not necessary. power-kernel, if it spontaneously reboots, ignores the clock and voltage configuration you set for it on the next boot - this is intentionally a safe-guard so that if you make a device-destabilizing configuration, it lets you load it with the normal profile and undo it.

Making a separate script however, would do the opposite - unless you're including the same or better checks for the last shut-off reason being a "bad" one, your script will just load EVERY time, so if you make a change that causes your N900 to never get to the desktop because it's that unstable, you're close to f'ed.
 

The Following 5 Users Say Thank You to Mentalist Traceur For This Useful Post:
JohnLF's Avatar
Posts: 551 | Thanked: 507 times | Joined on Feb 2010 @ North West England
#3408
Agreed. I just use an onscreen widget. For the sake of a few seconds to reload a profile and clock up via the widget again, its a non-issue.

A script is a bad idea unless you KNOW your phone is rock solid stable at those settings.
__________________
My websites: -
http://www.lefebvre.org.uk
http://www.lefebvre.ltd.uk
 

The Following User Says Thank You to JohnLF For This Useful Post:
Posts: 159 | Thanked: 122 times | Joined on Nov 2009
#3409
There is a updated package of obexd and libopenobex at Bluetooth PBAP and IrMC / Carkit support which brings phone book access for a lot of carkits.
mirakels is the user who built these debs.
It would be nice if it could be integrated into cssu.
__________________
Your packages are waiting too long to get tested? HowTo encourage at TMO.
 

The Following User Says Thank You to hschmitt For This Useful Post:
elie-7's Avatar
Posts: 968 | Thanked: 663 times | Joined on Jun 2010 @ Australia (Melbourne/vic) / Lebanon (Zgharta/north)
#3410
i have a problem with the e-mail client, i want to add my nokia messaging account, but every time i add it, and it starts syncing, the email app closes with an internal error message, and than every time i get a new e0mail and nokia messaing starts syncing, a message shows up saying "internal error, application e-mail closed" anyone got a solution ??? because i really need nokia messaging, and if i set MFE to work like nokia messaging it will kill my battery
__________________
rolling down the street, smoking ENDO, sipping on gin and juice
laid back, with my mind on my money and my money on my mind .
 
Closed Thread

Tags
community ssu, f**k nokia, fremantle, maemo 5, nokia-who?, portrait mode, rotate, task-switcher, update, upgrade


 
Forum Jump


All times are GMT. The time now is 15:56.