Need some help here - things seemed to work swimmingly in the terminal the first time round, but after the phone rebooted in recovery mode the custom recovery hadn't actually taken. I've tried this several times and wasn't originally getting the '/sdcard/flash_image: No such file or directory' or 'failed on '/system/etc/install-recovery.sh' - No such file or directory' errors that I'm getting now. Aaand I'm totally new to Android BTW
Here's my most recent attempt:
C:\>cd adb
C:\ADB>adb shell
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
$ su
su
# mount -o remount,rw -t yaffs2 /dev/block/mtdblock5 /system
mount -o remount,rw -t yaffs2 /dev/block/mtdblock5 /system
# cat /sdcard/flash_image > /system/bin/flash_image
cat /sdcard/flash_image > /system/bin/flash_image
/sdcard/flash_image: No such file or directory
# chmod 755 /system/bin/flash_image
chmod 755 /system/bin/flash_image
# mv /system/etc/install-recovery.sh /system/etc/install-recovery.sh.bak
mv /system/etc/install-recovery.sh /system/etc/install-recovery.sh.bak
failed on '/system/etc/install-recovery.sh' - No such file or directory
# mount -o remount,ro -t yaffs2 /dev/block/mtdblock5 /system
mount -o remount,ro -t yaffs2 /dev/block/mtdblock5 /system
# flash_image recovery /sdcard/xionia_cwma_12518.6.img
flash_image recovery /sdcard/xionia_cwma_12518.6.img
# reboot recovery
reboot recovery
C:\ADB>
And yes I'm logged in as root and yes I've extracted the flash / image files

. Any ideas here?