To change to 600 or 550 MHz: Easy!!
This is directed toward those afraid to make a commandline mistake (may freeze up Pre)
1) To use this "simple patch" you have to be in Developer Mode.
2) Need to download script from thread:
http://www.xssnet.com/luna600patch.sh
Procedure: if it shows up in your browser, but doesn't ask you to save
Browser Menu: File
Submenu: save as
luna600patch
click .txt file option
on desktop change .txt suffix to .sh
should see luna600patch.sh on your desktop
Alternatively for 550 MHz, use link:
http://www.xssnet.com/luna550patch.sh
Note there are those who think this may shorten the lifetime of your cpu so be forwarned. I haven't had any "bricking issues" but I do have a solution (see my signature thread) should it arrise
3) Use WebOS Quick Install Tools - Send File to send the file to /var/home/root
4) then use WOSQI Tools - Linux Command Line and write "sh /var/home/root/luna600patch.sh install"
Note: Prior to update you can uninstall using the Linux commandline and then reinstall after the update
"sh /var/home/root/luna600patch.sh uninstall"
5) "pkill LunaSysMgr" (to restart).
Please input thanks if you found this tutorial useful:
To check your handywork on the the new frequency you have set:
At commandline:
root@palm-webos-device:
type "cat /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state"
you will notice everytime you type this over time the 600000 number will get bigger (cpu ticks at 600 MHz)
or "cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq"
you will just get frequency listed
Dont insert the quotes, they just emphasize the lines you need to use.
This simplified script will not enable cpu scaling or to powersave (which can be a blessing). They only slightly modify the LunasysManager (simple patch which isn't mine). I have had no issues applying them now to 6 different phones (variable manufacturing dates) with no issues (my phone has 200 programs and >100 patches installed along with this modification.
For another method, see unixpsycho related thread on using commandline access to accomplish same thing): Procedure is below (unixpsycho and livinofframen):
This requires that you overwrite your LunaSysMgr and do so via the command line. For those uncomfortable with commandline modification, use above method. In Terminal or whatever your favorite method for command-line access to your Pre is, enter the commands exactly as written.
To simplify it for you, enter the exact commands as follows (just as it says in the thread):
mount -o remount,rw /
cd /usr/bin
sed "s/500000/600000/g" LunaSysMgr > newlunasysmgr
mv LunaSysMgr LunaSysMgr.orig
mv newlunasysmgr LunaSysMgr
chmod +x LunaSysMgr
sync
mount -o remount,ro /
pkill LunaSysMgr
Uninstall procedure for this second method:
mount -o remount,rw /
cd /usr/bin
mv LunaSysMgr.orig LunaSysMgr
Please input thanks if you found this tutorial useful: