From a323ce7b0991a4ebe6169c9308d885831bd0518b Mon Sep 17 00:00:00 2001 From: thorpej Date: Mon, 10 Jun 1996 06:39:31 +0000 Subject: [PATCH] Add the "Python 28849" to the list of `supported' tape drives as a PYTHON type. --- sys/arch/hp300/dev/st.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/arch/hp300/dev/st.c b/sys/arch/hp300/dev/st.c index cf38400ab1e6..011e42dd3118 100644 --- a/sys/arch/hp300/dev/st.c +++ b/sys/arch/hp300/dev/st.c @@ -1,4 +1,4 @@ -/* $NetBSD: st.c,v 1.14 1996/02/14 02:45:12 thorpej Exp $ */ +/* $NetBSD: st.c,v 1.15 1996/06/10 06:39:31 thorpej Exp $ */ /* * Copyright (c) 1990 University of Utah. @@ -353,7 +353,8 @@ st_inqbuf.inqbuf.qual, st_inqbuf.inqbuf.version); sc->sc_datalen[CMD_INQUIRY] = 36; sc->sc_datalen[CMD_MODE_SELECT] = 12; sc->sc_datalen[CMD_MODE_SENSE] = 12; - } else if (bcmp("Python 25501", product, 12) == 0) { + } else if (bcmp("Python 25501", product, 12) == 0 || + bcmp("Python 28849", product, 12) == 0) { sc->sc_tapeid = MT_ISPYTHON; sc->sc_datalen[CMD_REQUEST_SENSE] = 14; sc->sc_datalen[CMD_INQUIRY] = 36;