diff --git a/sys/conf/options b/sys/conf/options index 9387b4c..4d2af3e 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -601,6 +601,9 @@ KTR_TSLEEP opt_ktr.h KTR_USB_MEMORY opt_ktr.h KTR_VERBOSE opt_ktr.h +# NTFS options +NTFS_DEBUG opt_ntfs.h + # options for the Atheros driver ATH_DEBUG opt_ath.h ATH_DIAGAPI opt_ath.h diff --git a/sys/config/LINT64 b/sys/config/LINT64 index 26b7b5a..a59a9a5 100644 --- a/sys/config/LINT64 +++ b/sys/config/LINT64 @@ -641,6 +641,9 @@ options NFS_WDELAYHASHSIZ=16 # and with this options NFS_MUIDHASHSIZ=63 # Tune the size of nfsmount with this options NFS_DEBUG # Enable NFS Debugging +# NTFS options: +options NTFS_DEBUG + # MSDOSFS options: options MSDOSFS_DEBUG # Enable MSDOSFS Debugging diff --git a/sys/vfs/ntfs/Makefile b/sys/vfs/ntfs/Makefile index 91220b9..58734f0 100644 --- a/sys/vfs/ntfs/Makefile +++ b/sys/vfs/ntfs/Makefile @@ -5,5 +5,7 @@ KMOD= ntfs SRCS= ntfs_vfsops.c ntfs_vnops.c ntfs_subr.c ntfs_ihash.c \ ntfs_compr.c +SRCS+= opt_ntfs.h + SUBDIR= ntfs_iconv .include