So i guess your file system is severely corrupt beyond a point of repair for fsck. There are two, perhaps three, methods to go on from here: 1. If your data is still on your computer and easily to restore on the phone, you could formate the emmc freshly and recopy all your stuff to it. Code: mkfs.vfat -n MyDocs /dev/mmcblk0p1 2. You could try to get your data back from the device if you have no backup available with testdisk from recovery-tools package Code: apt-get install recovery-tools testdisk /dev/mmcblk0 3. This a dangerous option: You could rewrite the file systems backup header to the partition. This could really do some magic, but could also destroy it beyond recovery if something goes weird. Code: dd if=/dev/mmcblk0p1 of=/dev/mmcblk0p1 bs=512 count=1 skip=6 You could find more on this slightly dangerous command here http://talk.maemo.org/showpost.php?p...8&postcount=31
mkfs.vfat -n MyDocs /dev/mmcblk0p1
apt-get install recovery-tools testdisk /dev/mmcblk0
dd if=/dev/mmcblk0p1 of=/dev/mmcblk0p1 bs=512 count=1 skip=6