diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-11-25 00:31:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-11-25 00:31:15 +0000 |
commit | 476be368555be88e198b25f4aba121230d6115de (patch) | |
tree | 27f771a3d0dd55b2f9f805fa368102da00ec9c03 /sys/scsi | |
parent | 12f60400d3ddcae17737f95d7ab0ab495631de89 (diff) |
Add some quirky devices from NetBSD.
Diffstat (limited to 'sys/scsi')
-rw-r--r-- | sys/scsi/scsiconf.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c index e3dbba643af..f0087a58f6d 100644 --- a/sys/scsi/scsiconf.c +++ b/sys/scsi/scsiconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.c,v 1.16 1996/11/23 21:47:12 kstailey Exp $ */ +/* $OpenBSD: scsiconf.c,v 1.17 1996/11/25 00:31:14 millert Exp $ */ /* $NetBSD: scsiconf.c,v 1.57 1996/05/02 01:09:01 neil Exp $ */ /* @@ -275,6 +275,8 @@ struct scsi_quirk_inquiry_pattern scsi_quirk_patterns[] = { {{T_CDROM, T_REMOV, "IMS ", "CDD521/10 ", "2.06"}, SDEV_NOLUNS}, {{T_CDROM, T_REMOV, + "MATSHITA", "CD-ROM CR-5XX ", "1.0b"}, SDEV_NOLUNS}, + {{T_CDROM, T_REMOV, "MEDIAVIS", "CDR-H93MV ", "1.31"}, SDEV_NOLUNS}, {{T_CDROM, T_REMOV, "NEC ", "CD-ROM DRIVE:55 ", ""}, SDEV_NOLUNS}, @@ -297,13 +299,14 @@ struct scsi_quirk_inquiry_pattern scsi_quirk_patterns[] = { {{T_CDROM, T_REMOV, "TEAC ", "CD-ROM ", "1.06"}, SDEV_NOLUNS}, {{T_CDROM, T_REMOV, + "TEAC ", "CD-ROM CD-56S ", "1.0B"}, SDEV_NOLUNS}, + {{T_CDROM, T_REMOV, "TEXEL ", "CD-ROM ", "1.06"}, SDEV_NOLUNS}, {{T_CDROM, T_REMOV, "TEXEL ", "CD-ROM DM-XX24 K", "1.10"}, SDEV_NOLUNS}, {{T_CDROM, T_REMOV, "ShinaKen", "CD-ROM DM-3x1S", "1.04"}, SDEV_NOLUNS}, - {{T_OPTICAL, T_REMOV, "EPSON ", "OMD-5010 ", "3.08"}, SDEV_NOLUNS}, {{T_OPTICAL, T_REMOV, @@ -359,7 +362,9 @@ struct scsi_quirk_inquiry_pattern scsi_quirk_patterns[] = { "IOMEGA", "ZIP 100", ""}, SDEV_NOMODESENSE}, {{T_DIRECT, T_FIXED, "IBM", "0661467", "G"}, SDEV_NOMODESENSE}, - + /* Letting the motor run kills floppy drives and disks quit fast. */ + {{T_DIRECT, T_REMOV, + "TEAC", "FC-1", ""}, SDEV_NOSTARTUNIT}, /* XXX: QIC-36 tape behind Emulex adapter. Very broken. */ {{T_SEQUENTIAL, T_REMOV, |