Subject: Re: Problem with HP DAT 1533
To: Martin Lucina <mato@ariel.kotelna.sk>
From: Reiner Buehl <reiner@asta4.rz.fh-ulm.de>
List: port-hp300
Date: 11/10/1998 11:10:20
This is a multi-part message in MIME format.
--------------AC860472458E253CCEB9234F
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hi,

I made a small patch to add support for some more HP DATs. It worked
at least with DDS1 for me. I hope Jim's code will extend this to DDS2.
Is there a chance to get this integrated into 1.3.3 source? What do
I have to do?

> So I'd be interested in Jim's hack to get the block sizes
> to work (since that's what it complained about), but my hp300 is on the other
> side of the world right now, so it doesn't really matter.
-- 

MfG Reiner.

----------------------------------------------------------------------
Reiner Buehl                         Internet:
P.O. Box 100324                      reiner@asta4.rz.fh-ulm.de
70747 Leinfelden-Echterdingen        Fax:
Germany                              +49-(0)89-66617-62802
----------------------------------------------------------------------
--------------AC860472458E253CCEB9234F
Content-Type: text/plain; charset=us-ascii; name="st.c.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline; filename="st.c.patch"

--- st.c.orig	Tue Nov 10 10:51:59 1998
+++ st.c	Tue Nov 10 11:06:08 1998
@@ -310,7 +310,14 @@
 		sc->sc_datalen[CMD_MODE_SELECT] = 12;
 		sc->sc_datalen[CMD_MODE_SENSE] = 12;
 	} else if (bcmp("HP35450A", product, 8) == 0 ||
-		   bcmp("HP35470A", product, 8) == 0) {
+		   bcmp("HP35470A", product, 8) == 0 ||
+		   bcmp("HP35480A", product, 8) == 0 ||
+		   bcmp("C1533A", product, 6) == 0 ||
+		   bcmp("C1534A", product, 6) == 0 ||
+		   bcmp("C1536A", product, 6) == 0 ||
+		   bcmp("C1553A", product, 6) == 0 ||
+		   bcmp("C1554A", product, 6) == 0 ||
+		   bcmp("C1599A", product, 6) == 0) {
 		/* XXX "extra" stat makes the HP drive happy at boot time */
 		stat = scsi_test_unit_rdy(sc->sc_dev.dv_parent->dv_unit,
 		    sc->sc_target, sc->sc_lun);

--------------AC860472458E253CCEB9234F--