View Single Post
Posts: 72 | Thanked: 8 times | Joined on Jan 2007
#5
I'm having trouble mounting my ext2 partition. In particular, I can't insert the module.

Code:
/mnt/initfs/lib/modules # ls -l
drwxr-xr-x    2 root     root            0 Dec 19 10:56 2.6.18-omap1
lrwxrwxrwx    1 root     root           25 Dec 19 10:56 current -> /lib/modules/2.6.18-omap1
so current won't work as a path, so I use the 2.6.18 one instead

Code:
 /mnt/initfs/lib/modules/2.6.18-omap1 # insmod /mnt/initfs/lib/modules/2.6.18-omap1/ext2.ko 
insmod: cannot insert `/mnt/initfs/lib/modules/2.6.18-omap1/ext2.ko': Unknown symbol in module (-1): No such file or directory
Obviously, the mount command fails without the module:
Code:
# mount -t ext2 /dev/mmcblk1p2 /opt 
mount: Mounting /dev/mmcblk1p2 on /opt failed: No such device
# mount /dev/mmcblk1p2 /mnt       
mount: Mounting /dev/mmcblk1p2 on /mnt failed: Invalid argument
Suggestions?