I don't have a gp2x (yet; waiting for hardware issues to get ironed out), but from what I've read on the forums so far, it looks like some people have had better luck with the card "superfloppy" formatted - ie, without a partition table, and the filesystem across the whole disk. (this is how floppy disks are formatted; hence the name)
Lots of cameras and such will format a card like this when you format the SD in them, but windows probably just keeps the same partition table/no partition table layout as it had when you told it to start formatting. Maybe someone with linux or an easy way to format the card in a specific way could test this and report back?
linux command for formatting w/ no partition table:
mkdosfs -F 32 /dev/sda
with partition table:
fdisk /dev/sda
(delete any partitions with d command)
(make new partition with n command)
(change type of partition to type "b" with t command)
w to write partition table and quit
mkdosfs -F 32 /dev/sda1
If this works, maybe an easy way for windows people to get the card formatted would be a disk image writer program and an image file created by someone that's got theirs to work? Even a 1GB image file would zip down to next to nothing if the card was blanked before formatting.
Lots of cameras and such will format a card like this when you format the SD in them, but windows probably just keeps the same partition table/no partition table layout as it had when you told it to start formatting. Maybe someone with linux or an easy way to format the card in a specific way could test this and report back?
linux command for formatting w/ no partition table:
mkdosfs -F 32 /dev/sda
with partition table:
fdisk /dev/sda
(delete any partitions with d command)
(make new partition with n command)
(change type of partition to type "b" with t command)
w to write partition table and quit
mkdosfs -F 32 /dev/sda1
If this works, maybe an easy way for windows people to get the card formatted would be a disk image writer program and an image file created by someone that's got theirs to work? Even a 1GB image file would zip down to next to nothing if the card was blanked before formatting.