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/sparc | |
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/sparc')
-rw-r--r-- | sys/arch/sparc/sparc/conf.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/arch/sparc/sparc/conf.c b/sys/arch/sparc/sparc/conf.c index 3cf1892ab5d..8bd5afb24fc 100644 --- a/sys/arch/sparc/sparc/conf.c +++ b/sys/arch/sparc/sparc/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.18 1998/08/24 05:30:02 millert Exp $ */ +/* $OpenBSD: conf.c,v 1.19 1998/09/25 09:20:54 todd Exp $ */ /* $NetBSD: conf.c,v 1.40 1996/04/11 19:20:03 thorpej Exp $ */ /* @@ -82,6 +82,10 @@ #include "xd.h" #include "xy.h" #include "magma.h" /* has NMTTY and NMBPP */ +#ifdef XFS +#include <xfs/nxfs.h> +cdev_decl(xfs_dev); +#endif #include "ksyms.h" struct bdevsw bdevsw[] = @@ -167,7 +171,11 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 48 */ cdev_notdef(), /* 49 */ cdev_notdef(), /* 50 */ +#ifdef XFS + cdev_xfs_init(NXFS,xfs_dev), /* 51: xfs communication device */ +#else cdev_notdef(), /* 51 */ +#endif cdev_notdef(), /* 52 */ cdev_notdef(), /* 53 */ cdev_disk_init(NFD,fd), /* 54: floppy disk */ |