diff options
author | avatar <avatar@FreeBSD.org> | 2007-02-01 04:21:03 +0000 |
---|---|---|
committer | avatar <avatar@FreeBSD.org> | 2007-02-01 04:21:03 +0000 |
commit | 114dbcad6232243ead37c111514ad3f6343371bf (patch) | |
tree | f65476837e77ee698fb4e9af816d6a3d82e5bf58 | |
parent | 6236fe8975811e4330e06c4a76140787827aac68 (diff) | |
download | FreeBSD-src-114dbcad6232243ead37c111514ad3f6343371bf.zip FreeBSD-src-114dbcad6232243ead37c111514ad3f6343371bf.tar.gz |
Reflecting the removal of MSDOSFS_LARGE found in sys/conf/files:1.1173.
This should fix the run time bustage observed on recent -CURRENT whilst
mounting a MSDOS filesystem with non-default locale/code page:
link_elf: symbol msdosfs_fileno_free undefined
KLD msdosfs_iconv.ko: depends on msdosfs - not available
-rw-r--r-- | sys/modules/msdosfs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/msdosfs/Makefile b/sys/modules/msdosfs/Makefile index ef8989f..a0fe95f 100644 --- a/sys/modules/msdosfs/Makefile +++ b/sys/modules/msdosfs/Makefile @@ -4,8 +4,8 @@ KMOD= msdosfs SRCS= vnode_if.h \ - msdosfs_conv.c msdosfs_denode.c msdosfs_fat.c msdosfs_lookup.c \ - msdosfs_vfsops.c msdosfs_vnops.c + msdosfs_conv.c msdosfs_denode.c msdosfs_fat.c msdosfs_fileno.c \ + msdosfs_lookup.c msdosfs_vfsops.c msdosfs_vnops.c EXPORT_SYMS= msdosfs_iconv .include <bsd.kmod.mk> |