Quote:
Originally Posted by rlmurray
this is the output.
D:\android-sdk-windows\tools>adb shell
adb server is out of date. killing...
* daemon started successfully *
$ su
su
# mount -o rw,remount -t yaffs2 /sdcard
mount -o rw,remount -t yaffs2 /sdcard
Usage: mount [-r] [-w] [-o options] [-t type] device directory
#
D:\android-sdk-windows\tools>
It had me reformat since it said the card was unreadable. I did and now the camera works after the reboot. Thanks for that!!
I'm guessing all is golden now but I hope that I don't have a bad SD card if the issue crops up again?
Copying my old pics, mp3's and videos back again and will let you know if I can view them.
That was the original problem before. When I copied the old DCIM folder it would not read the old pictures and videos when copied via explorer on windows XP.
[IMG]file:///D:/downloads/android%20apps/backup/evobackup752010/DCIM/100MEDIA/100_0089.jpg[/IMG]
|
The old pics/vids could be the issue. I've read that they can become corrupt rendering your card 'read only'.
Sorry about the code ADB n00b here
I left off part of the code. What it should be is something like this:
mount -o remount,rw -t yaffs2
/dev/block//vold/179:1 /sdcard
The part I left off is how it is on my device. Yours MAY differ. To find out in adb shell type
mount (as long as you are at a #)
Look at the code that is generated and look for the /dev/block//vold...
it corresponds to your sdcard. I ASSUME they would be the same for all devices but just in case verify on your device.
Hope that helps.