Skip to content
Snippets Groups Projects
Commit 3fcc8afd authored by pjwilliams's avatar pjwilliams
Browse files

Added ExcelStor J240, Hitachi Travelstar 80GN family, Fujitsu

MHTxxxxAT family, and IBM Deskstar 25GP and 22GXP families to
knowndrives table.


git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@1679 4ea69e1a-61f1-4043-bf83-b5c94c648137
parent 6c39b304
Branches
No related tags found
No related merge requests found
CHANGELOG for smartmontools CHANGELOG for smartmontools
$Id: CHANGELOG,v 1.401 2004/04/18 15:02:49 chrfranke Exp $ $Id: CHANGELOG,v 1.402 2004/04/18 22:54:49 pjwilliams Exp $
The most recent version of this file is: The most recent version of this file is:
http://cvs.sourceforge.net/viewcvs.py/smartmontools/sm5/CHANGELOG?sortby=date&view=markup http://cvs.sourceforge.net/viewcvs.py/smartmontools/sm5/CHANGELOG?sortby=date&view=markup
...@@ -27,6 +27,10 @@ NOTES FOR FUTURE RELEASES: see TODO file. ...@@ -27,6 +27,10 @@ NOTES FOR FUTURE RELEASES: see TODO file.
<ADDITIONS TO THE CHANGE LOG SHOULD BE ADDED JUST BELOW HERE, PLEASE> <ADDITIONS TO THE CHANGE LOG SHOULD BE ADDED JUST BELOW HERE, PLEASE>
[PW] Added ExcelStor J240, Hitachi Travelstar 80GN family, Fujitsu
MHTxxxxAT family, and IBM Deskstar 25GP and 22GXP families to
knowndrives table.
[CF] Cygwin smartd: Added workaround for missing SIGQUIT via keyboard: [CF] Cygwin smartd: Added workaround for missing SIGQUIT via keyboard:
To exit smartd in debug mode, type CONTROL-C twice. To exit smartd in debug mode, type CONTROL-C twice.
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "utility.h" // includes <regex.h> #include "utility.h" // includes <regex.h>
#include "config.h" #include "config.h"
const char *knowndrives_c_cvsid="$Id: knowndrives.c,v 1.102 2004/04/16 13:48:45 ballen4705 Exp $" const char *knowndrives_c_cvsid="$Id: knowndrives.c,v 1.103 2004/04/18 22:54:50 pjwilliams Exp $"
ATACMDS_H_CVSID ATAPRINT_H_CVSID CONFIG_H_CVSID EXTERN_H_CVSID INT64_H_CVSID KNOWNDRIVES_H_CVSID UTILITY_H_CVSID; ATACMDS_H_CVSID ATAPRINT_H_CVSID CONFIG_H_CVSID EXTERN_H_CVSID INT64_H_CVSID KNOWNDRIVES_H_CVSID UTILITY_H_CVSID;
#define MODEL_STRING_LENGTH 40 #define MODEL_STRING_LENGTH 40
...@@ -159,6 +159,11 @@ const drivesettings knowndrives[] = { ...@@ -159,6 +159,11 @@ const drivesettings knowndrives[] = {
"Please see http://www.geocities.com/dtla_update/", "Please see http://www.geocities.com/dtla_update/",
NULL, NULL, NULL NULL, NULL, NULL
}, },
{ // ExcelStor J240
"^ExcelStor Technology J240$",
".*",
NULL, NULL, NULL, NULL
},
{ // Fujitsu MPD and MPE series { // Fujitsu MPD and MPE series
"^FUJITSU MP[DE]....A[HTE]$", "^FUJITSU MP[DE]....A[HTE]$",
".*", ".*",
...@@ -209,6 +214,13 @@ const drivesettings knowndrives[] = { ...@@ -209,6 +214,13 @@ const drivesettings knowndrives[] = {
vendoropts_9_seconds, vendoropts_9_seconds,
NULL, NULL NULL, NULL
}, },
{ // Fujitsu MHTxxxxAT family
"^FUJITSU MHT20[23468]0AT$",
".*",
NULL,
vendoropts_9_seconds,
NULL, NULL
},
{ // Samsung SV4012H (known firmware) { // Samsung SV4012H (known firmware)
"^SAMSUNG SV4012H$", "^SAMSUNG SV4012H$",
"^RM100-08$", "^RM100-08$",
...@@ -434,6 +446,11 @@ const drivesettings knowndrives[] = { ...@@ -434,6 +446,11 @@ const drivesettings knowndrives[] = {
".*", ".*",
NULL, NULL, NULL, NULL NULL, NULL, NULL, NULL
}, },
{ // IBM Deskstar 25GP and 22GXP family
"^IBM-DJNA-3(5(101|152|203|250)|7(091|135|180|220))0$",
".*",
NULL, NULL, NULL, NULL
},
{ // IBM Travelstar 25GS, 18GT, and 12GN family { // IBM Travelstar 25GS, 18GT, and 12GN family
"^IBM-DARA-2(25|18|15|12|09|06)000$", "^IBM-DARA-2(25|18|15|12|09|06)000$",
".*", ".*",
...@@ -449,6 +466,11 @@ const drivesettings knowndrives[] = { ...@@ -449,6 +466,11 @@ const drivesettings knowndrives[] = {
".*", ".*",
NULL, NULL, NULL, NULL NULL, NULL, NULL, NULL
}, },
{ // Hitachi Travelstar 80GN family
"^IC25N0[248]0ATMR04$",
".*",
NULL, NULL, NULL, NULL
},
{ // IBM/Hitachi Deskstar 120GXP family { // IBM/Hitachi Deskstar 120GXP family
"^IC35L((020|040|060|080|120)AVVA|0[24]0AVVN)07-[01]$", "^IC35L((020|040|060|080|120)AVVA|0[24]0AVVN)07-[01]$",
".*", ".*",
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "utility.h" // includes <regex.h> #include "utility.h" // includes <regex.h>
#include "config.h" #include "config.h"
const char *knowndrives_c_cvsid="$Id: knowndrives.cpp,v 1.102 2004/04/16 13:48:45 ballen4705 Exp $" const char *knowndrives_c_cvsid="$Id: knowndrives.cpp,v 1.103 2004/04/18 22:54:50 pjwilliams Exp $"
ATACMDS_H_CVSID ATAPRINT_H_CVSID CONFIG_H_CVSID EXTERN_H_CVSID INT64_H_CVSID KNOWNDRIVES_H_CVSID UTILITY_H_CVSID; ATACMDS_H_CVSID ATAPRINT_H_CVSID CONFIG_H_CVSID EXTERN_H_CVSID INT64_H_CVSID KNOWNDRIVES_H_CVSID UTILITY_H_CVSID;
#define MODEL_STRING_LENGTH 40 #define MODEL_STRING_LENGTH 40
...@@ -159,6 +159,11 @@ const drivesettings knowndrives[] = { ...@@ -159,6 +159,11 @@ const drivesettings knowndrives[] = {
"Please see http://www.geocities.com/dtla_update/", "Please see http://www.geocities.com/dtla_update/",
NULL, NULL, NULL NULL, NULL, NULL
}, },
{ // ExcelStor J240
"^ExcelStor Technology J240$",
".*",
NULL, NULL, NULL, NULL
},
{ // Fujitsu MPD and MPE series { // Fujitsu MPD and MPE series
"^FUJITSU MP[DE]....A[HTE]$", "^FUJITSU MP[DE]....A[HTE]$",
".*", ".*",
...@@ -209,6 +214,13 @@ const drivesettings knowndrives[] = { ...@@ -209,6 +214,13 @@ const drivesettings knowndrives[] = {
vendoropts_9_seconds, vendoropts_9_seconds,
NULL, NULL NULL, NULL
}, },
{ // Fujitsu MHTxxxxAT family
"^FUJITSU MHT20[23468]0AT$",
".*",
NULL,
vendoropts_9_seconds,
NULL, NULL
},
{ // Samsung SV4012H (known firmware) { // Samsung SV4012H (known firmware)
"^SAMSUNG SV4012H$", "^SAMSUNG SV4012H$",
"^RM100-08$", "^RM100-08$",
...@@ -434,6 +446,11 @@ const drivesettings knowndrives[] = { ...@@ -434,6 +446,11 @@ const drivesettings knowndrives[] = {
".*", ".*",
NULL, NULL, NULL, NULL NULL, NULL, NULL, NULL
}, },
{ // IBM Deskstar 25GP and 22GXP family
"^IBM-DJNA-3(5(101|152|203|250)|7(091|135|180|220))0$",
".*",
NULL, NULL, NULL, NULL
},
{ // IBM Travelstar 25GS, 18GT, and 12GN family { // IBM Travelstar 25GS, 18GT, and 12GN family
"^IBM-DARA-2(25|18|15|12|09|06)000$", "^IBM-DARA-2(25|18|15|12|09|06)000$",
".*", ".*",
...@@ -449,6 +466,11 @@ const drivesettings knowndrives[] = { ...@@ -449,6 +466,11 @@ const drivesettings knowndrives[] = {
".*", ".*",
NULL, NULL, NULL, NULL NULL, NULL, NULL, NULL
}, },
{ // Hitachi Travelstar 80GN family
"^IC25N0[248]0ATMR04$",
".*",
NULL, NULL, NULL, NULL
},
{ // IBM/Hitachi Deskstar 120GXP family { // IBM/Hitachi Deskstar 120GXP family
"^IC35L((020|040|060|080|120)AVVA|0[24]0AVVN)07-[01]$", "^IC35L((020|040|060|080|120)AVVA|0[24]0AVVN)07-[01]$",
".*", ".*",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment