Gp2x-gpe


nvm, im using mandriva right now, when i run that command it says
Code:
 [brian@localhost ~]$ mke2fs /dev/sda
bash: mke2fs: command not found
 
What he said.

Also, supposedly the gp2x won't automatically mount the filesystem when it's ext2, so you'll want to put a couple scripts on the NAND to mount/unmount it. Maybe someone who has one and has done it could advise. Also make sure that you're not using a SATA hard drive or something that shows up as /dev/sda - you wouldn't want to erase your system :)
 
This should mount the SD if it is formatted as ext2:
Code:
mountsd.gpu

#!/bin/bash
mount -t ext2 /dev/mmcsd/disc0/part1 /mnt/sd
 
Back
Top