I have loaded a bin for linux and other files from a firmware update file mentioned here.
http://www.openipcam.com/forum/index.php/topic,386.msg3495.html#msg3495.
Im getting to here in the boot.sh
_______________________________________________
/usr/sbin/telnetd
mke2fs /dev/ram0
mount -t ext2 /dev/ram0 /mnt/mtd/rd
mkdir /mnt/mtd/rd/jpeg
if [ -f /mnt/mtd/html.tgz ]; then
tar -xzf /mnt/mtd/html.tgz -C /mnt
fi
cd /mnt/
./ipc8126
sleep 5
RETVAL=$?
if [ $RETVAL != 1 ]; then
echo ------- Start uploader --------
/mnt/uploader 0
#/mnt/uploader $?
echo ------- Uploader terminated --------
fi
reboot
______________________________________________
/mnt/mtd/boot.sh: line 51: mke2fs: not found
mount: mounting /dev/ram0 on /mnt/mtd/rd failed: No such file or directory
mkdir: cannot create directory '/mnt/mtd/rd/jpeg': No such file or directory
/mnt/mtd/boot.sh: line 56: tar: not found
/mnt/mtd/boot.sh: line 59: ./ipc8126: not found
______________________________________________
And seem to be missing some files mainly mke2fs , tar , ipc8126, uploader . I added the sleep 5 to allow easy exit from the endless rebooting
Anyone out there check theirs and check what im missing

?