This is what is going on :
I flash a fresh rom, then follow the instructions :
Setup instructions:
--------1. Unzip and copy contents of the file onto CF or SD card.
done :
#ls /mnt/card
Documents
dev_img-1.5
image_setup.sh
usr
--------2. Run image_setup.sh script as root:
image_setup.sh full_path_to_dev_image mount_point
where "mount_point" is any folder, for exmaple /mnt/dev
( I change the first line of /mnt/card/image_setup.sh from #!/bin/bash to #!/bin/sh )
#cd /mnt/card
#./image_setup.sh /mnt/card/dev_img-1.5 /mnt/dev
Setting mount point /mnt/dev...
Mounting image /mnt/card/dev_img-1.5...
mount: Mounting /mnt/card/dev_img-1.5 on /mnt/dev failed: No such file or directory
Failed to mount /mnt/card/dev_img-1.5 on /mnt/dev
A link has been created in /mnt :
#ls -l /mnt
...
dev -> /home/zaurus/develop
...
but /home is empty. (new flashed rom ?)
I add a new "zaurus" user :
#adduser zaurus
Then, delete the last line added in /etc/fstab by the preceeding aborted install.
Then try to install again :
#cd /mnt/card
#./image_setup.sh /mnt/card/dev_img-1.5 /mnt/dev
Setting mount point /mnt/dev...
Mounting image /mnt/card/dev_img-1.5...
mount: Mounting /mnt/card/dev_img-1.5 on /mnt/dev failed: Block device required
Failed to mount /mnt/card/dev_img-1.5 on /mnt/dev
----------3. When script finishes, relogin as zaurus
-->

This is the last line of /etc/fstab :
/mnt/card/dev_img-1.5 /mnt/dev cramfs loop,noauto 0 0
Any idea ?
blaise