Quote:
Originally Posted by [ACL]
the only thing holding me back from commiting them is that i cant verify if i can write to nand yet. I need to know how to disable android from automouting the yaffs partitions.
|
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