You're so close
Go here:
Applying Patches - WebOS Internals
Follow the instructions after
Setup Procedure (Scripted).
That will install
quilt.
Then follow the directions under
Importing and Applying patches
This command lets you see the available patches:
find /opt/src/modifications -name *.patch
Then import one (this step makes the patch available to
quilt, so
quilt can install it ("push") to the Pre).
Type the commands listed, but use the name of a real patch: e.g., ...
cd /
quilt import /opt/src/modifications/email/enable-landscape-email.patch
You'll see some lines indicating the patch has been imported.
Then just type :
quilt push
The push command installs the patch on the Pre.
The command
quilt series lets you see all the patches you have imported using the
quilt import command. They are not necessarily installed on the Pre. They are "on deck" until you use
quilt push to install them
I generally import one, then push it right away. You can import several and type:
quilt push -a, but I had trouble with a patch that wouldn't install and got confused about what was there. So, do them one at a time.
To uninstall them, use
quilt pop
Quilt pop-a uninstalls patches you installed with quilt
quilt pop /opt/src/patches/enable-landscape-email.patch uninstalls just that patch.
If you have trouble with a patch that won't install, you can delete it. I type B]quilt pop /opt/src/patches/enable-landscape-email.patch[/B] first to make sure it's uninstalled.
Then type:
quilt delete /opt/src/patches/enable-landscape-email.patch. That deletes it from quilt's series ("the on deck circle")
Read a bit before installing. Some conflict with each other (add-delete-pages-in-the-launcher and more_icons_per_row)
And, look at the screen and be exact when you type. I used examples of the landscape email patch, but this work with any. Just make sure you type the right directory in
After installing patches, type either:
luna-send -n 1 palm://com.palm.applicationManager/rescan {}
or
stop LunaSysMgr && start LunaSysMgr (" a short reboot")
or
reboot
Then try out the new functions you installed
Let me know what happens