Quote:
Originally Posted by xuyn2003
I just don't know how to mount /mnt/sdcard mannualy in recovery.sh.
mount -t vfat /dev/block//vold/179:1 /mnt/sdcard?
|
If you want do it the same way as the system (by using vold), you have to:
To know the volumes mounted:
To umount the internal memory (SD card):
Code:
vdc volume unmount sdcard
To umount the external Micro-SD card:
Code:
vdc volume unmount extsd
To mount the internal memory (SD card):
Code:
vdc volume mount sdcard
To mount the external Micro-SD card:
Code:
vdc volume mount extsd