diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 1998-09-25 09:20:56 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 1998-09-25 09:20:56 +0000 |
commit | 4897184625e6aef48bfe685764b13331980ada05 (patch) | |
tree | 8e6896f0f96d88902d35f425ae81056e15d9d4de /sys/arch/pmax | |
parent | 50fdf8917208f530c68b7f177d5cf0a9d3bf9a3d (diff) |
o xfs is in the house (thanks art, for getting me started)
o all but vax are major 51
Diffstat (limited to 'sys/arch/pmax')
-rw-r--r-- | sys/arch/pmax/pmax/conf.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/arch/pmax/pmax/conf.c b/sys/arch/pmax/pmax/conf.c index a847aad329d..861d6a5a422 100644 --- a/sys/arch/pmax/pmax/conf.c +++ b/sys/arch/pmax/pmax/conf.c @@ -129,6 +129,11 @@ cdev_decl(xcfb); cdev_decl(mfb); dev_decl(filedesc,open); +#ifdef XFS +#include <xfs/nxfs.h> +cdev_decl(xfs_dev); +#endif + #ifdef IPFILTER #define NIPF 1 #else @@ -209,7 +214,11 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 48: Ultrix /dev/trace */ cdev_notdef(), /* 49: sm (sysV shm?) */ cdev_notdef(), /* 50 sg */ +#ifdef XFS + cdev_xfs_init(NXFS,xfs_dev), /* 51: xfs communication device */ +#else cdev_notdef(), /* 51: sh tty */ +#endif cdev_notdef(), /* 52: its */ cdev_notdef(), /* 53: nodev */ cdev_notdef(), /* 54: nodev */ |