When I enter terminal emulator and input:
Su
Mount -o,rw -t yaffs2 /dev/block/mtdblock4 /system
I recieve:
Mount: device or program busy.
What's going on? Thanks for the help!
When I enter terminal emulator and input:
Su
Mount -o,rw -t yaffs2 /dev/block/mtdblock4 /system
I recieve:
Mount: device or program busy.
What's going on? Thanks for the help!
Moto Droid - Root'd:
Chevy's Simply Stunning v3.2
Chevy's 1.25ghz MV OC Kernel
What Droid Doesn't, SS Does!
Hey man, I've seen this before and usually a reboot will solve the issue. But I saw an error in your command to mount system...
You have this:
Mount -o,rw -t yaffs2 /dev/block/mtdblock4 /system
This is the correct command:
mount -o rw,remount -t yaffs2 /dev/block/mtdblock4 /system
And mount as read only when you're done:
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
Success! It worked! I knew I was doing something wrong. Thanks for the help!!!
Moto Droid - Root'd:
Chevy's Simply Stunning v3.2
Chevy's 1.25ghz MV OC Kernel
What Droid Doesn't, SS Does!