View Single Post
Posts: 202 | Thanked: 72 times | Joined on Apr 2011 @ France 55
#3226
I installed nitdoid without any problem on my 4G card(class2).
A monkey could do that !
Thanks a lot.


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)
I'd like to do that ( i don't want to see my "MyDocs" 's files)

I tried to do that, but i can't cd to /and/etc/ , did i have to be root or something like that ? How can i do that ?
Is there a way to use nitroid without using the maemo MyDocs ? Only with the memory card ?

And , i don't receive sms/mms, i don't know why. Maybe it's a problem from my telecom.

Thanks.


Edit: i tried to "mount /dev/mmcblk1p2 /and -o noatime" , but :failed:N o such file or directory.

Last edited by turbovomit; 2011-10-03 at 20:24. Reason: add edit.