View Single Post
zeljkobo12's Avatar
Posts: 18 | Thanked: 13 times | Joined on Jul 2011 @ Novi Sad, Serbia
#3213
Originally Posted by AWasisto View Post
NITDroid can detect SD Card, just modify the "vold.fstab" file inside "/and/etc/" after installation.
The original line is like this (it will mount first partition of eMMC (MyDocs) as the SD Card).
Code:
dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.1/mmc_host/mmc1
This line is under "# eMMC" line. You need to add "#" before the "dev_mount" command (to make it as a comment line).
Code:
#dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.1/mmc_host/mmc1
At the end of the file you should create new command (it will mount the first partition of the 'real' SD Card).
Code:
dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.0/mmc_host/mmc0
Note:
dev_mount : is the mount command
sdcard : is the label
/mnt/sdcard : is the mount point
1 : is the partition of the SD Card
/devices/platform/mmci-omap-hs.0/mmc_host/mmc0 : is the 'real' SD Card device
/devices/platform/mmci-omap-hs.1/mmc_host/mmc1 : is the first partition of the eMMC (MyDocs) (this is the original "vold.fstab" file)
Is it possible to mount eMMC (MyDocs) with ext3 file system as SD Card?