Quote:
Originally Posted by Lmiller1708
To stop auto mounting try commenting out this line of code in your Rootfs init. It's about 15 lines from the top.
Code:
/bin/mount | grep mtd
notnand=$?
if [ $notnand = "0" ] ; then
echo "running from NAND"
/bin/mount -t yaffs2 /dev/block/mtdblock2 /system
/bin/mount -t yaffs2 /dev/block/mtdblock3 /data
fi
|
I commented all that out.
This actually happens when androuid loads. The console shows yaffs trying to mount block2 and 3. And boom.. death to boot up since it cant find anything. so so close.