On ubuntu I'm using the following to create a ext3 filesystem image system.img.
dd if=/dev/zero of=./system.img bs=1000000 count=200
mkfs.ext3 ./system.img
I'm attempting to do the same on android platform. But the problem is I can't find a mkfs.ext3 binary for armv7 android. But I have mkfs.ext2 , mke2fs , tune2fs and e2fsck. So my question is, Is it possible to achieve the same result with the available binaries? If yes, how to do it?
e2fsprogsfor armv7 It cant be compiled statically, it uses dynamic. I'm fairly new to cross compiling so I didn't succeed. But It'll be nice if someone have already done it. – Binoy Babu Feb 27 '12 at 11:13