Some very small changes to support Netcon's TFS filesystem.

These patches were formerly applied by the Netcon installer
before rebuilding your kernel.
This commit is contained in:
Jordan K. Hubbard 1996-10-17 17:12:04 +00:00
parent 28ed0fe08b
commit 17a6a9e3cc
2 changed files with 7 additions and 5 deletions

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)mount.h 8.13 (Berkeley) 3/27/94
* $Id: mount.h,v 1.32 1996/09/03 07:09:09 davidg Exp $
* $Id: mount.h,v 1.33 1996/09/12 03:16:34 bde Exp $
*/
#ifndef _SYS_MOUNT_H_
@ -101,7 +101,8 @@ struct statfs {
#define MOUNT_UNION 15 /* Union (translucent) Filesystem */
#define MOUNT_DEVFS 16 /* existing device Filesystem */
#define MOUNT_EXT2FS 17 /* Linux EXT2FS */
#define MOUNT_MAXTYPE 17
#define MOUNT_TFS 18 /* Netcon Novell filesystem */
#define MOUNT_MAXTYPE 18
#define INITMOUNTNAMES { \
"none", /* 0 MOUNT_NONE */ \
@ -122,7 +123,8 @@ struct statfs {
"union", /* 15 MOUNT_UNION */ \
"devfs", /* 16 MOUNT_DEVFS */ \
"ext2fs", /* 17 MOUNT_EXT2FS */ \
0, /* 17 MOUNT_SPARE */ \
"tfs", /* 18 MOUNT_TFS */ \
0, /* 18 MOUNT_SPARE */ \
}
/*

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)vnode.h 8.7 (Berkeley) 2/4/94
* $Id: vnode.h,v 1.34 1996/08/21 21:56:01 dyson Exp $
* $Id: vnode.h,v 1.35 1996/10/15 19:22:46 bde Exp $
*/
#ifndef _SYS_VNODE_H_
@ -58,7 +58,7 @@ enum vtype { VNON, VREG, VDIR, VBLK, VCHR, VLNK, VSOCK, VFIFO, VBAD };
enum vtagtype {
VT_NON, VT_UFS, VT_NFS, VT_MFS, 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_UNION, VT_MSDOSFS, VT_DEVFS, VT_TFS
};
/*