summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniklas <niklas@openbsd.org>1997-10-28 10:19:12 +0000
committerniklas <niklas@openbsd.org>1997-10-28 10:19:12 +0000
commit933519a56daaa6688d342f1e675fce6a48553434 (patch)
treef1b6c501420808f4f86025db31c6201f1c5120a5
parentuse RAW_PART, not 0 (diff)
downloadwireguard-openbsd-933519a56daaa6688d342f1e675fce6a48553434.tar.xz
wireguard-openbsd-933519a56daaa6688d342f1e675fce6a48553434.zip
Do not checksum CD devices
-rw-r--r--sys/arch/i386/i386/conf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c
index 92d71db8939..b97ea3a08a1 100644
--- a/sys/arch/i386/i386/conf.c
+++ b/sys/arch/i386/i386/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.40 1997/10/27 14:42:02 niklas Exp $ */
+/* $OpenBSD: conf.c,v 1.41 1997/10/28 10:19:12 niklas Exp $ */
/* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */
/*
@@ -383,10 +383,13 @@ static struct {
} disk_maj[] = {
{ "wd", 0 },
{ "sd", 4 },
+#if 0
+ /* XXX It's not clear at all that recognizing these will help us */
{ "acd", 18 },
{ "cd", 6 },
{ "mcd", 7 }, /* XXX I wonder if any BIOSes support this */
{ "scd", 15 } /* - " - */
+#endif
};
dev_t dev_rawpart __P((struct device *)); /* XXX */