[android-developers] Re: Getting "failed to copy 'content' to '/sdcard/content': Read only file system on donut compilation.

2009-09-01 Thread Marco Nelissen
Since the card isn't mounted at all, that probably means the system couldn't find a valid filesystem on it. Check the log to see if there's anything there, and also look at 'adb shell dmesg'. On Mon, Aug 31, 2009 at 9:44 PM, Anand wrote: > > Below are the responses of command you recommended t

[android-developers] Re: Getting "failed to copy 'content' to '/sdcard/content': Read only file system on donut compilation.

2009-08-31 Thread Anand
Below are the responses of command you recommended to check. $ adb shell df /dev: 47172K total, 12K used, 47160K available (block size 4096) /sqlite_stmt_journals: 4096K total, 0K used, 4096K available (block size 4096) /system: 65536K total, 49132K used, 16404K available (block size 4096) /data:

[android-developers] Re: Getting "failed to copy 'content' to '/sdcard/content': Read only file system on donut compilation.

2009-08-31 Thread Chris Stratton
probably adb shell mount rather than df, if the goal is to see if anything is mounted, since this would also tell if it's mounted rw or ro. However, the permissions of the mount point look a bit suspect, too... I have d---rwxrwx on a saphire... suspect some startup script is not doing it's thing

[android-developers] Re: Getting "failed to copy 'content' to '/sdcard/content': Read only file system on donut compilation.

2009-08-31 Thread Marco Nelissen
What does 'adb shell df' say? On Mon, Aug 31, 2009 at 7:26 AM, Anand wrote: > > Hi There > > I followed below sequence, and facing below issues while pushing the > content. > > 1. repo init -u git://android.git.kernel.org/platform/manifest.git -b > donut. By this I got today donut code. > 2. rep