From 3be1cc7870a9a36a1d05b176871c42ca372d698b Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Mon, 28 May 2001 17:10:46 +0000 Subject: [PATCH] Name this module msdos.ko so that mount_msdos(8) can autoload 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 --- sys/modules/msdosfs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/msdosfs/Makefile b/sys/modules/msdosfs/Makefile index 62a9ba900e73..2d4041ea8bfe 100644 --- a/sys/modules/msdosfs/Makefile +++ b/sys/modules/msdosfs/Makefile @@ -2,7 +2,7 @@ .PATH: ${.CURDIR}/../../fs/msdosfs -KMOD= 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