diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-04-28 01:05:45 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-04-28 01:05:45 +0000 |
commit | 9973133b83125ca033539a67a15a825aaa4510ba (patch) | |
tree | 9cd1a6d3968acb6b9d209fcb3eb4c4b380abf552 /sys | |
parent | 1adcdd456967d8b52ea6c41dd7bbc2aecef99b09 (diff) |
Deal with xd commented out in files.mvme68k - this went unnoticed until you
purge your kernel compile directory...
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme68k/mvme68k/conf.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/mvme68k/conf.c b/sys/arch/mvme68k/mvme68k/conf.c index 3e897231a74..607690b5383 100644 --- a/sys/arch/mvme68k/mvme68k/conf.c +++ b/sys/arch/mvme68k/mvme68k/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.26 2002/04/27 23:21:05 miod Exp $ */ +/* $OpenBSD: conf.c,v 1.27 2002/04/28 01:05:44 miod Exp $ */ /*- * Copyright (c) 1995 Theo de Raadt @@ -79,8 +79,10 @@ #include "ch.h" #include "ss.h" #include "uk.h" +#ifdef notyet #include "xd.h" bdev_decl(xd); +#endif #include "vnd.h" #include "ccd.h" #include "rd.h" @@ -97,7 +99,11 @@ struct bdevsw bdevsw[] = bdev_tape_init(NST,st), /* 7: SCSI tape */ bdev_disk_init(NCD,cd), /* 8: SCSI CD-ROM */ bdev_disk_init(NRD,rd), /* 9: RAM disk - for install tape */ +#ifdef notyet bdev_disk_init(NXD,xd), /* 10: XD disk */ +#else + bdev_notdef(), /* 10 */ +#endif bdev_notdef(), /* 11 */ bdev_notdef(), /* 12 */ bdev_lkm_dummy(), /* 13 */ @@ -146,7 +152,9 @@ cdev_decl(xfs_dev); #include "ksyms.h" cdev_decl(ksyms); +#ifdef notyet cdev_decl(xd); +#endif #include "bpfilter.h" #include "tun.h" @@ -183,7 +191,11 @@ struct cdevsw cdevsw[] = cdev_bpftun_init(NTUN,tun), /* 23: network tunnel */ cdev_lkm_init(NLKM,lkm), /* 24: loadable module driver */ cdev_notdef(), /* 25 */ +#ifdef notyet cdev_disk_init(NXD,xd), /* 26: XD disk */ +#else + cdev_notdef(), /* 26 */ +#endif cdev_notdef(), /* 27 */ cdev_lp_init(NLP,lp), /* 28: lp */ cdev_lp_init(NLPTWO,lptwo), /* 29: lptwo */ |