summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorscottl <scottl@FreeBSD.org>2002-04-14 16:36:49 +0000
committerscottl <scottl@FreeBSD.org>2002-04-14 16:36:49 +0000
commitc611b0542acca999ad5cfe7fcddbf7037fa88bb3 (patch)
tree25cd0df2ba1eeb83992f52dfd0f4ec6451b739e8 /sys
parent67bfdd081abe0b740ddddbccb37a9d16ee08db06 (diff)
downloadFreeBSD-src-c611b0542acca999ad5cfe7fcddbf7037fa88bb3.zip
FreeBSD-src-c611b0542acca999ad5cfe7fcddbf7037fa88bb3.tar.gz
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
Diffstat (limited to 'sys')
-rw-r--r--sys/conf/NOTES1
-rw-r--r--sys/conf/files3
-rw-r--r--sys/conf/options1
-rw-r--r--sys/modules/Makefile1
-rw-r--r--sys/sys/vnode.h2
5 files changed, 7 insertions, 1 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index baea359..33a0e79 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -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
diff --git a/sys/conf/files b/sys/conf/files
index 119efe3..b7e53fb 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -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
diff --git a/sys/conf/options b/sys/conf/options
index 16b918c..f93557dc 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -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
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index 54a6e83..9467dc3 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -92,6 +92,7 @@ SUBDIR= 3dfx \
ucom \
udbp \
ufm \
+ udf \
ugen \
uhid \
ukbd \
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h
index c8c849f..ba1c759 100644
--- a/sys/sys/vnode.h
+++ b/sys/sys/vnode.h
@@ -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
};
/*
OpenPOWER on IntegriCloud