modified files to support kernfs and fdesc fs
This commit is contained in:
parent
36c3e99c07
commit
e96522ffb8
|
@ -1 +1 @@
|
|||
revision 1.1.1.1 intentionally removed
|
||||
revision 1.2 intentionally removed
|
||||
|
|
|
@ -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
|
||||
};
|
||||
|
|
|
@ -1 +1 @@
|
|||
revision 1.1.1.1 intentionally removed
|
||||
revision 1.2 intentionally removed
|
||||
|
|
Loading…
Reference in New Issue