diff options
author | scottl <scottl@FreeBSD.org> | 2003-11-05 06:38:14 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2003-11-05 06:38:14 +0000 |
commit | 6e846fedd8852d787b0b5bf5669ca8a101a32e5e (patch) | |
tree | 1d1db8d0d544223b6cf451b0afdea87da5658598 | |
parent | a6e55b6c58e2b48f4e2e60e3546a8ccc682cf2b2 (diff) | |
download | FreeBSD-src-6e846fedd8852d787b0b5bf5669ca8a101a32e5e.zip FreeBSD-src-6e846fedd8852d787b0b5bf5669ca8a101a32e5e.tar.gz |
Hook the udf_iconv module up to the kernel build.
Submitted by: imura@ryu16.org
-rw-r--r-- | sys/conf/NOTES | 1 | ||||
-rw-r--r-- | sys/conf/files | 1 | ||||
-rw-r--r-- | sys/conf/options | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index b8be57b..368852b 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -796,6 +796,7 @@ device random options CD9660_ICONV options MSDOSFS_ICONV options NTFS_ICONV +options UDF_ICONV ##################################################################### diff --git a/sys/conf/files b/sys/conf/files index 7c07802..8c0c95c 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -940,6 +940,7 @@ fs/smbfs/smbfs_subr.c optional smbfs fs/smbfs/smbfs_vfsops.c optional smbfs fs/smbfs/smbfs_vnops.c optional smbfs fs/specfs/spec_vnops.c standard +fs/udf/udf_iconv.c optional udf_iconv fs/udf/udf_vfsops.c optional udf fs/udf/udf_vnops.c optional udf fs/udf/osta.c optional udf diff --git a/sys/conf/options b/sys/conf/options index 271a289..b218728 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -202,6 +202,7 @@ NFSSERVER opt_nfs.h CD9660_ICONV opt_dontuse.h MSDOSFS_ICONV opt_dontuse.h NTFS_ICONV opt_dontuse.h +UDF_ICONV opt_dontuse.h # If you are following the conditions in the copyright, # you can enable soft-updates which will speed up a lot of thigs |