diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-10-28 10:19:13 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-10-28 10:19:13 +0000 |
commit | e496f4e8ffc0cfe36546027d40cb8b0735b51549 (patch) | |
tree | 9bad22455db76c5e8b27cae124eb9dc622d65363 /sys/arch | |
parent | 9c3b78145c26ad6c3331133caeae47f4e1cabf5e (diff) |
Do not checksum CD devices
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/i386/conf.c | 5 |
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 */ |