[android-porting] External Sd card support in Kitkat 4.4.2

2014-03-11 Thread Anand R
Hi All, I am facing a issue when i try to mount a external sdcard in a custom device which is running on Kitkat 4.4.2. Below is the error which i am getting whenever sdcard mount happens. 03-11 23:25:32.229: E/cutils(553): Failed to mkdir(/mnt/shell/emulated/0): Read-only file system 03-11 23:2

Re: [android-porting] External Sd card support in Kitkat 4.4.2

2014-03-12 Thread Jeff Sharkey
That error is happening when Zygote is trying to prepare the multiuser mount namespace. It looks like primary external storage is emulated on your device; is that FUSE daemon started and running? (The mkdir might be failing against the read-only rootfs if the daemon isn't present.) It might also

Re: [android-porting] External Sd card support in Kitkat 4.4.2

2014-03-17 Thread Anand R
Hi Jeff, Thanks for your valuable information. My configuration is similar to the one that is there in the link. "It sounds like you're building a "Emulated primary, physical secondary" device" => Yes I am building Emualated primary and physical secondary. Can you please let me know how to chec