Add a filesystem driver for the Universal Disk Format. For more info,

see http://people.freebsd.org/~scottl/udf

 MFC after:	when asmodai gets the backport done
 Prodded by:	phk asmodai des
This commit is contained in:
Scott Long 2002-04-14 16:36:49 +00:00
parent ca99146106
commit df263cbd02
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=94658
6 changed files with 8 additions and 1 deletions

View File

@ -49,6 +49,7 @@ SUBDIR= adjkerntz \
mount_nullfs \
mount_portalfs \
mount_std \
mount_udf \
mount_umapfs \
mount_unionfs \
mountd \

View File

@ -555,6 +555,7 @@ options PORTALFS #Portal filesystem
options PROCFS #Process filesystem (requires PSEUDOFS)
options PSEUDOFS #Pseudo-filesystem framework
options SMBFS #SMB/CIFS filesystem
options UDF #Universal Disk Format
options UMAPFS #UID map filesystem
options UNIONFS #Union filesystem
# options NODEVFS #disable devices filesystem

View File

@ -686,6 +686,9 @@ fs/pseudofs/pseudofs_fileno.c optional pseudofs
fs/pseudofs/pseudofs_vncache.c optional pseudofs
fs/pseudofs/pseudofs_vnops.c optional pseudofs
fs/specfs/spec_vnops.c standard
fs/udf/udf_vfsops.c optional udf
fs/udf/udf_vnops.c optional udf
fs/udf/osta.c optional udf
fs/umapfs/umap_subr.c optional umapfs
fs/umapfs/umap_vfsops.c optional umapfs
fs/umapfs/umap_vnops.c optional umapfs

View File

@ -129,6 +129,7 @@ UMAPFS opt_dontuse.h
NTFS opt_dontuse.h
HPFS opt_dontuse.h
UNIONFS opt_dontuse.h
UDF opt_dontuse.h
# Broken - ffs_snapshot() dependency from ufs_lookup() :-(
FFS opt_ffs_broken_fixme.h

View File

@ -92,6 +92,7 @@ SUBDIR= 3dfx \
ucom \
udbp \
ufm \
udf \
ugen \
uhid \
ukbd \

View File

@ -71,7 +71,7 @@ enum vtagtype {
VT_NON, VT_UFS, VT_NFS, VT_UNUSED, VT_PC, VT_LFS, VT_LOFS, VT_FDESC,
VT_PORTAL, VT_NULL, VT_UMAP, VT_KERNFS, VT_PROCFS, VT_AFS, VT_ISOFS,
VT_UNION, VT_MSDOSFS, VT_DEVFS, VT_TFS, VT_VFS, VT_CODA, VT_NTFS,
VT_HPFS, VT_NWFS, VT_PSEUDOFS, VT_SMBFS
VT_HPFS, VT_NWFS, VT_PSEUDOFS, VT_SMBFS, VT_UDF
};
/*