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)
dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.1/mmc_host/mmc1
#dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.1/mmc_host/mmc1
dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.0/mmc_host/mmc0