Code:
Disk /dev/mmca: 2059 MB, 2059141120 bytes
255 heads, 63 sectors/track, 250 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/mmca1 1 211 160943+ 6 FAT16
/dev/mmca2 212 242 250890 83 Linux
/dev/mmca3 243 250 64260 82 Linux swap
I try
Code:
#!/bin/bash
modules_dir='/lib/modules'
device_path='/ezxlocal/dev/mmca2'
mount_path='/ezxlocal/download/mystuff/MMCa2'
#loading modules
insmod $modules_dir/loop.o
insmod $modules_dir/jbd.o
insmod $modules_dir/ext2.o
insmod $modules_dir/ext3.o
mknod $device_path b 212 2
chmod ug+rw $device_path
mkdir -p $mount_path
mount $device_path $mount_path
still not working
what's the hell