View Single Post
Posts: 115 | Thanked: 98 times | Joined on Aug 2011
#3209
Originally Posted by panjgoori View Post
thanks all nitdroid team for porting android to N900. really a great work. installed nitdroid last night it is good. how ever it doesn't detects my sd card but its not a problem and one more question how to do multi tasking in it ? which software should i use for it.
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)

Last edited by AWasisto; 2011-09-28 at 09:47.
 

The Following 3 Users Say Thank You to AWasisto For This Useful Post: