Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Dec 1996 15:15:54 +0100 (MET)
From:      J Wunsch <j@uriah.heep.sax.de>
To:        freebsd-scsi@FreeBSD.org (FreeBSD SCSI list)
Cc:        jonny@mailhost.coppe.ufrj.br (Joao Carlos Mendes Luis), subsolar@flamingo1.fcom.com
Subject:   Re: Iomega SCSI Zip Drive
Message-ID:  <199612261415.PAA05373@uriah.heep.sax.de>
In-Reply-To: <199612251934.RAA29325@gaia.coppe.ufrj.br> from Joao Carlos Mendes Luis at "Dec 25, 96 05:34:46 pm"

next in thread | previous in thread | raw e-mail | index | archive | help
As Joao Carlos Mendes Luis wrote:

(driver for the SCSI Iomega Zip drive)

> // Doesn't it work for you?
> 
> Aside from the drop to debugger when I change disks, its perfect.

Huh, that's not supposed to happen.  Can you quote a little more from
your error messages?

You might also try experimenting with the `od' driver.  It is better
targeted for the requirements of a changeable media device.  In order
to register your Zip drive with the `od' driver, you gotta add a quirk
record to sys/scsi/scsconf.c.  Something like:

Index: scsiconf.c
===================================================================
RCS file: /home/ncvs/src/sys/scsi/scsiconf.c,v
retrieving revision 1.73
diff -u -u -r1.73 scsiconf.c
--- scsiconf.c	1996/12/20 20:43:45	1.73
+++ scsiconf.c	1996/12/26 14:12:52
@@ -265,6 +265,10 @@
 		T_DIRECT, T_OPTICAL, T_REMOV, "RICOH", "RO-*", "*",
 		"od", SC_ONE_LU
 	},
+	{
+		T_DIRECT, T_OPTICAL, T_REMOV, "IOMEGA", "ZIP*", "*",
+		"od", SC_ONE_LU
+	},
 #endif	/* NOD */
 #if NSD > 0
 	{

Of course, you need to replace the "ZIP*" by whatever you drive sends
as inquiry data (see the boot message logs).  It's possible that the
above patch doesn't apply to non-current systems, i had to reorder
some of the entries in that table recently.  But you should get the
picture.

-- 
cheers, J"org

joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE
Never trust an operating system you don't have sources for. ;-)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199612261415.PAA05373>