Hello,

I have been trying to port my phone Newman N2 to Android 4.2
Things are going kind well. 
But there is a problem i can't solve and i am lost here. 
And i have searched and researched and tryed everything i could and 
squeezed every idea i could have.

Here is the description .

The phone has an internal and external storage. 
Both are mounted and accessible via adb. 
I can do every operation read and write via adb.
However the phone cannot do nor see any contents of both sdcards.
For instances if i use RootExplorer and go into the sdcard folder it shows 
nothing. 
But if i do it via adb i can list it's contents and modify.

storage_list.xml 

    <storage android:mountPoint="/mnt/sdcard"
        android:storageDescription="@string/Phone_memory"
        android:primary="true"
        android:allowMassStorage="true" />
        <storage android:mountPoint="/mnt/ext_sd"
        android:storageDescription="@string/storage_sd_card"
        android:primary="false"
        android:removable="true" 
        android:allowMassStorage="true" />



vold.fstab

dev_mount sdcard /mnt/sdcard 1 /devices/platform/s3c-sdhci.2/mmc_host/mmc1
dev_mount ext_sd /mnt/ext_sd 1 /devices/platform/dw_mmc/mmc_host/mmc0 
nonremovable,encryptable


init.smdk4x12.rc

    export EXTERNAL_STORAGE /mnt/sdcard
    export SECONDARY_STORAGE /mnt/ext_sd

    mkdir /storage 0550 system sdcard_r

    mkdir /mnt/sdcard 0000 system system
    mkdir /mnt/ext_sd 0775 system system
    mkdir /mnt/udisk 0775 system system
    symlink /mnt/sdcard /sdcard
    symlink /mnt/ext_sd /ext_sd

    symlink /mnt/sdcard /storage/sdcard0
    symlink /mnt/ext_sd /extSdCard
    symlink /mnt/ext_sd /mnt/extSdCard



Any on what the problem could be ?

Thanks in advance :)

-- 
-- 
unsubscribe: [email protected]
website: http://groups.google.com/group/android-porting

--- 
You received this message because you are subscribed to the Google Groups 
"android-porting" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to