Module Name: src
Committed By: tsutsui
Date: Sat Jan 12 13:59:53 UTC 2019
Modified Files:
src/sys/dev/scsipi: scsiconf.c
Log Message:
Add NOLUNS quirk for more SEAGATE SCA/WIDE drives.
Tested on NetBSD/luna68k and LUNA with SCA 80pin -> NARROW 50pin and
WIDE 68pin -> NARROW 50pin connectors.
To generate a diff of this commit:
cvs rdiff -u -r1.282 -r1.283 src/sys/dev/scsipi/scsiconf.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/scsipi/scsiconf.c
diff -u src/sys/dev/scsipi/scsiconf.c:1.282 src/sys/dev/scsipi/scsiconf.c:1.283
--- src/sys/dev/scsipi/scsiconf.c:1.282 Sun Oct 7 18:14:32 2018
+++ src/sys/dev/scsipi/scsiconf.c Sat Jan 12 13:59:53 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: scsiconf.c,v 1.282 2018/10/07 18:14:32 christos Exp $ */
+/* $NetBSD: scsiconf.c,v 1.283 2019/01/12 13:59:53 tsutsui Exp $ */
/*-
* Copyright (c) 1998, 1999, 2004 The NetBSD Foundation, Inc.
@@ -48,7 +48,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.282 2018/10/07 18:14:32 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.283 2019/01/12 13:59:53 tsutsui Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -684,6 +684,12 @@ static const struct scsi_quirk_inquiry_p
{{T_DIRECT, T_FIXED,
"SEAGATE ", "ST318404LC ", ""}, PQUIRK_NOLUNS},
{{T_DIRECT, T_FIXED,
+ "SEAGATE ", "ST336753LC ", ""}, PQUIRK_NOLUNS},
+ {{T_DIRECT, T_FIXED,
+ "SEAGATE ", "ST336753LW ", ""}, PQUIRK_NOLUNS},
+ {{T_DIRECT, T_FIXED,
+ "SEAGATE ", "ST336754LC ", ""}, PQUIRK_NOLUNS},
+ {{T_DIRECT, T_FIXED,
"SEAGATE ", "ST39236LC ", ""}, PQUIRK_NOLUNS},
{{T_DIRECT, T_FIXED,
"SEAGATE ", "ST15150N ", ""}, PQUIRK_NOTAG},