Allow to specify a file system type for a vnode-backed memory disk.
This will simplify mounting images from command line:
#mdmfs -T cd9660 -P -F foo.iso md /mnt/cdrom
instead of
#mdconfig -a -t vnode -f foo.iso -u 10000
#mount_cd9660 /dev/md10000 /mnt/cdrom
And allows to mount images from /etc/fstab:
echo 'md /media mfs rw,-Tmsdosfs,-P,-F/path/image.img 0 0' >> /etc/fstab