The kernel is always in the flash memory, only the root fileysystem is in memory card.
So the installation is the same regardless of the location of root filesystem.
Ok, My goal is: only use the App Switch long press to rotate (N800)
I have changed all of the options above to "...=menu"
How do I make this change permanent?
Reboot doesn't seem to change anything...
I feel that I am missing something really obvious...
Thanks
I like to use the power button to rotate and not long press on home, myself, but I think the way to change things will be similar.
Open a terminal and become root, then type:
vi /usr/lib/sliderotate/sliderotate.py
Find the line that says "bus.add_signal_receiver(power,"
-- and so on, and comment it out with a "#" sign in front. (Press a to enter edit mode, then escape, shift+z shift+z to save.)
for my changes to sliderotate.py to take effect, all I did was run as root: /etc/init.d/sliderotate restart
I changed the sliderotate.py slightly differently than previously posted. I made the function power() just set the rotation to normal. Near the bottom of the file is this function:
-------
def power(id,obj):
if not locked:
new_orientation = "normal"
rotate(new_orientation)
-------
the new_orientation used to be set to "power", but with it set to normal, now only the longpress on the Home button rotates the screen.