diff options
author | jkh <jkh@FreeBSD.org> | 1999-07-20 08:47:35 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1999-07-20 08:47:35 +0000 |
commit | 9450c7816fd0981ffb314b111c937876988e4f96 (patch) | |
tree | bbf37a0b1adf9c5ca1243a4b43ab714d0c5f7906 /usr.sbin/sade | |
parent | ffd076b12a5eaf26aba2551678b3d1938c41af05 (diff) | |
download | FreeBSD-src-9450c7816fd0981ffb314b111c937876988e4f96.zip FreeBSD-src-9450c7816fd0981ffb314b111c937876988e4f96.tar.gz |
The matcd driver is acting strange (returning a successful open even
when it fails). Disable it in sysinstall for now.
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r-- | usr.sbin/sade/devices.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/sade/devices.c b/usr.sbin/sade/devices.c index e12ad06..1db4143 100644 --- a/usr.sbin/sade/devices.c +++ b/usr.sbin/sade/devices.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: devices.c,v 1.95 1999/07/06 20:40:22 phk Exp $ + * $Id: devices.c,v 1.96 1999/07/09 04:30:06 wpaul Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -65,7 +65,9 @@ static struct _devname { { DEVICE_TYPE_CDROM, "cd%dc", "SCSI CDROM drive", 6, 2, 8, 4, 'b' }, { DEVICE_TYPE_CDROM, "mcd%da", "Mitsumi (old model) CDROM drive", 7, 0, 8, 4, 'b' }, { DEVICE_TYPE_CDROM, "scd%da", "Sony CDROM drive - CDU31/33A type", 16, 0, 8, 4, 'b' }, +#ifdef notdef { DEVICE_TYPE_CDROM, "matcd%da", "Matsushita CDROM ('sound blaster' type)", 17, 0, 8, 4, 'b' }, +#endif { DEVICE_TYPE_CDROM, "acd%dc", "ATAPI IDE CDROM", 19, 2, 8, 4, 'b' }, { DEVICE_TYPE_TAPE, "rsa%d", "SCSI tape drive", 14, 0, 16, 4, 'c' }, { DEVICE_TYPE_TAPE, "rwt%d", "Wangtek tape drive", 10, 0, 1, 4, 'c' }, |