Quote:
Originally Posted by ottischwenk
Interesting for me would be:
when MTP, changing the Tolino Partition from FAT32 to Ext to avoid FAT32 limitations - 4GB File size, ~ 12.000 files in Folder aso.
|
I think I'd go at it like this first:
adb shell getprop ro.boot.hardware
E60K00
Assuming it's the same as mine, you'd edit the file
fstab.E60K00 (otherwise substitute your hardware type) inside
boot.img, and you'd want to (1) uncomment the entry for
/dev/block/mmcblk0p4, (2) change
vfat to
ext4 there, then edit
init.rc and disable the
vold service (simply add a line saying
disabled under it). Then rebuild the image and flash it (
fastboot flash boot boot.img).
At some point you'd also have to format the filesystem, more or less like that:
adb shell mke2fs -t ext4 /mnt/media_rw/extsd
Maybe you also have to unmount it first or use
-F -F.
Note: you'd lose all files on that partition of course, and there might be something else to do as well (most likely a permissions issue). I haven't tried it myself so I can't really say.