I'm trying to mount the SL-C3100 NAND, but somehow can't do it.
I'm doing this from Knoppix. This is what I've tried:
modprobe mtdram total_size=109000
This is the biggest problem probably, because the size should be bigger, no? However when I specify any number that's bigger, I get:FATAL: Error inserting mtdram...
Cannot allocate memory
And then I've tried:
modprobe mtdblock
modprobe jffs2
mkdir /dev/mtdblock
cd /dev/mtdblock
mknod 0 b 31 0
mknod 1 b 31 1
mknod 2 b 31 2
dd if=/tmp/SYSTC310.DBK of=/dev/mtdblock/0
And here I get:
dd: writing to '/dev/mtdblock/0': No space left on device
Which is probably due to the memory allocated being too little...
How can I make this work?