In FreeBSD, similar to Linux, a FAT32 formatted external volume (da0) is mounted by root with:
mount -t msdosfs /dev/da0 /media/usb
But all files and directories in /media/usb/ now have the permission and ownership
-rwxr-xr-x 1 root wheel
In Linux this can easily be changed by using the option umask, for example as described in this answer.
But the mount coming with FreeBSD (10.3) seems not to have that option...?
How can one achieve a similar effect in FreeBSD with a missing umask option?