mirror of
https://github.com/opnsense/src.git
synced 2026-03-24 03:33:08 -04:00
it with vfsload("msdos").
(The proper fix would be to rename the `msdos' file system to
`msdosfs' in VFS_SET(), and mount_msdos(8) to mount_msdosfs(8).
But that would break too many existing fstab(5) setups, and
would require a lot of unnecessary documentation and code
msdos -> msdosfs changes.)
Noticed by: markm
15 lines
260 B
Makefile
15 lines
260 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../fs/msdosfs
|
|
|
|
KMOD= msdos
|
|
SRCS= vnode_if.h \
|
|
msdosfs_conv.c msdosfs_denode.c msdosfs_fat.c msdosfs_lookup.c \
|
|
msdosfs_vfsops.c msdosfs_vnops.c
|
|
NOMAN=
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
CFLAGS+= -DPC98
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|