3

I don't want to use fat32, I want use the more stable ext2.

Izzy
  • 91,166
  • 73
  • 343
  • 943
lovespring
  • 1,185
  • 3
  • 16
  • 22

2 Answers2

3

You cannot use anything but FAT for the external SDCard. Android will not mount the card if it is not FAT.

Ryan Conrad
  • 22,673
  • 9
  • 58
  • 81
  • And the internal memory what uses, that depends on the ROM? – Gabriel May 31 '11 at 15:42
  • Internal SDCard? I believe that is also FAT. as for the other areas of the internal storage, like /system and such is ext4 starting with 2.3. Prior to that it used yaffs2. – Ryan Conrad Dec 17 '11 at 16:33
1

I've managed to do it on Harmony developer board using adb shell:

adb shell "mount -t ext2 /dev/block/mmcblk3p1 /mnt/sdcard"