diff options
author | joerg <joerg@FreeBSD.org> | 1997-05-03 22:23:13 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1997-05-03 22:23:13 +0000 |
commit | d39360e870a968d9772f69c9d786d8ac9a8f8d7b (patch) | |
tree | d5148546b4ba1ac371f9a47de13bad340ae0f3a3 /sys/scsi | |
parent | 448c1dca859c219c3ca33a924fb16c2fe5aca01f (diff) | |
download | FreeBSD-src-d39360e870a968d9772f69c9d786d8ac9a8f8d7b.zip FreeBSD-src-d39360e870a968d9772f69c9d786d8ac9a8f8d7b.tar.gz |
Add the Archive 4586NP tape changer.
PR: kern/3481
Submitted by: bruce@zuhause.mn.org (Bruce Albrecht)
Diffstat (limited to 'sys/scsi')
-rw-r--r-- | sys/scsi/scsiconf.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c index f48673d..21ee239 100644 --- a/sys/scsi/scsiconf.c +++ b/sys/scsi/scsiconf.c @@ -16,7 +16,7 @@ * * New configuration setup: dufault@hda.com * - * $Id: scsiconf.c,v 1.83 1997/04/01 19:28:03 joerg Exp $ + * $Id: scsiconf.c,v 1.84 1997/04/02 09:05:41 jmg Exp $ */ #include "opt_scsi.h" @@ -315,6 +315,10 @@ static struct scsidevs knowndevs[] = T_SEQUENTIAL, T_SEQUENTIAL, T_REMOV, "ARCHIVE", "Python 28849-*", "*", "st", SC_MORE_LUS, 0 }, + { + T_SEQUENTIAL, T_SEQUENTIAL, T_REMOV, "ARCHIVE", "4586XX 28887-*", "*", + "st", SC_MORE_LUS, 0 + }, #endif /* NST */ #if NCH > 0 /* @@ -327,6 +331,10 @@ static struct scsidevs knowndevs[] = T_CHANGER, T_CHANGER, T_REMOV, "ARCHIVE", "Python 28849-*", "*", "ch", SC_MORE_LUS }, + { + T_CHANGER, T_CHANGER, T_REMOV, "ARCHIVE", "4586XX 28887-*", "*", + "ch", SC_MORE_LUS + }, #endif /* NCH */ #if NCD > 0 #ifndef UKTEST /* make cdroms unrecognised to test the uk driver */ |