Other mounting erofs images in freebsd

there is this erofs image which is a system partition image of an android device that i want to mount under freebsd, i tried doing
mdconfig -f system.img -u 0
mount /dev/md0 /mnt

but that fails with
mount: /dev/md0: No such file or directory
if my memory serves me right, the way to do this on linux was
mount -o loop system.img /mnt

any help would be much appreciated, thanks in advance
 
yes, i agree to that, additionally btw there seems to be an userspace linux kernel driver for it, do you think linuxkpi can help?

That's probably a lot of work and if the driver is GPLed it won't make it into FreeBSD. The fuse porting sounds more promising.
 
Back
Top