View Single Post
Member: VeeDubb65
at: 10:24 PM 10/18/2009
Originally Posted by MaxLOL:
can you let me know how to install from command line or point me in a direction where i can learn how to do it. Thank you very much
Originally Posted by MaxLOL:
Nevermind I just installed via WOSQI


works like a charm
Originally Posted by MaxLOL:
would you mind putting up the code to remove the patch? Thank you once again.
First of all, let me say that if you don't already know how to do this kind of thing through the command line, it's easier to use WebOSQuickInstall to install and remove the patch.

To add patches from the command line:

Copy the patch to your Pre.
As root, do the following:
[CODE]mount -o remount,rw /
cd /
quilt import /path/to/patch
quilt push
mount -o remount,ro /[/CODE]

To remove a patch from your Pre.
As root, do the following:
[CODE]mount -o remount,rw /
cd /
quilt import /path/to/patch
quilt pop
mount -o remount,ro /[/CODE]

Don't forget to restart luna after installing or removing any patch.
Reply