View Single Post
Posts: 50 | Thanked: 36 times | Joined on Feb 2010
#15
Originally Posted by offthefront View Post
Well my ext3 didn't automount either :-)
This is how I make it.
Usual disclaimers, if this doesn't make sense to you, you probably shouldn't be trying it ...

add these 4 lines to the bottom of /usr/sbin/mmc-mount
if [ $? -ne 0 ]
then
mount -o $3,noatime,nodiratime "$1" "$2" > /dev/null
fi
I just done this. I also edited out the code in rcS-whatever to keep from re-writing my /etc/fstab everyboot.

So far.

1. I can use "mount" to mount my sd card.
2. /etc/fstab doesn't wipe on boot.

I need to automount it on boot, lets say to /test. What am I missing??