diff options
author | jkh <jkh@FreeBSD.org> | 1998-05-11 00:47:27 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-05-11 00:47:27 +0000 |
commit | 7a79ac1a000499bda404bdc7e7f9c57112d46a53 (patch) | |
tree | a132ca63b21aa07197e875826b92d44eef8c8eea /usr.sbin/sade/devices.c | |
parent | 67f934a2cf999f86befe4de3efa358f277928df5 (diff) | |
download | FreeBSD-src-7a79ac1a000499bda404bdc7e7f9c57112d46a53.zip FreeBSD-src-7a79ac1a000499bda404bdc7e7f9c57112d46a53.tar.gz |
Make Mitsumi and Sony CDROM devs also use the `a' device. I think
they'll have (or are having) similar problems to those described
for the matcd device in PR#6576
Diffstat (limited to 'usr.sbin/sade/devices.c')
-rw-r--r-- | usr.sbin/sade/devices.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sade/devices.c b/usr.sbin/sade/devices.c index 599c228..bec3e65 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.75 1998/03/20 23:39:57 jkh Exp $ + * $Id: devices.c,v 1.76 1998/05/11 00:45:06 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -63,8 +63,8 @@ static struct _devname { char dev_type; } device_names[] = { { DEVICE_TYPE_CDROM, "cd%dc", "SCSI CDROM drive", 6, 2, 8, 4, 'b' }, - { DEVICE_TYPE_CDROM, "mcd%dc", "Mitsumi (old model) CDROM drive", 7, 2, 8, 4, 'b' }, - { DEVICE_TYPE_CDROM, "scd%dc", "Sony CDROM drive - CDU31/33A type", 16, 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' }, { DEVICE_TYPE_CDROM, "matcd%da", "Matsushita CDROM ('sound blaster' type)", 17, 0, 8, 4, 'b' }, { DEVICE_TYPE_CDROM, "wcd%dc", "ATAPI IDE CDROM", 19, 2, 8, 4, 'b' }, { DEVICE_TYPE_TAPE, "rst%d", "SCSI tape drive", 14, 0, 16, 4, 'c' }, |