I just want to add that I created an ext2fs on CF using mke2fs on the Iliad, and couldn't get it to work at first because mke2fs defaulted to 256 byte inodes (the standard value for 2.6 kernels). But Iliad's 2.4 kernel can only handle 128 byte inodes. The command I needed was:
Code:
mke2fs -I 128 /dev/hda1
Compiling mke2fs (in the e2fsprogs distribution) with the standard Iliad development kit wasn't difficult, but I'm attaching the executable in case it helps somebody else.