You got it correct - use a:
--prefix=/home
option to configure for running in the emulator (/home is the only place you can write)
use a:
--prefix=/mnt/us
option to configure for running in the Kindle.
When doing the "make install" step -
mkdir /home/<something>
DESTDIR=/home/<something> make install
Then cd to /home/<something>
and create a tar-ball of everything below it (for un-packing into /mnt/us)
as in: tar -czf something.tar.gz .
notice the trailing "space dot" in that command
|