modified files to support kernfs and fdesc fs

This commit is contained in:
cgd 1993-03-23 23:56:07 +00:00
parent be757e0c2d
commit 93156ce06e
3 changed files with 20 additions and 2 deletions

View File

@ -1 +1 @@
revision 1.1.1.1 intentionally removed
revision 1.2 intentionally removed

View File

@ -67,6 +67,14 @@ extern struct vfsops mfs_vfsops;
extern struct vfsops isofs_vfsops;
#endif
#ifdef FDESC
extern struct vfsops fdesc_vfsops;
#endif
#ifdef KERNFS
extern struct vfsops kernfs_vfsops;
#endif
struct vfsops *vfssw[] = {
(struct vfsops *)0, /* 0 = MOUNT_NONE */
&ufs_vfsops, /* 1 = MOUNT_UFS */
@ -86,4 +94,14 @@ struct vfsops *vfssw[] = {
#else
(struct vfsops *)0,
#endif
#ifdef FDESC
&fdesc_vfsops, /* 6 = MOUNT_FDESC */
#else
(struct vfsops *)0,
#endif
#ifdef KERNFS
&kernfs_vfsops, /* 5 = MOUNT_KERNFS */
#else
(struct vfsops *)0,
#endif
};

View File

@ -1 +1 @@
revision 1.1.1.1 intentionally removed
revision 1.2 intentionally removed