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

Added Seagate U Series X family, Seagate U8 family, and Seagate

Medalist 8641 family to knowndrives table.


git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@1673 4ea69e1a-61f1-4043-bf83-b5c94c648137
parent d9b83dfa
No related branches found
No related tags found
No related merge requests found
CHANGELOG for smartmontools CHANGELOG for smartmontools
$Id: CHANGELOG,v 1.397 2004/04/14 13:27:19 chrfranke Exp $ $Id: CHANGELOG,v 1.398 2004/04/16 08:53:25 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,9 @@ NOTES FOR FUTURE RELEASES: see TODO file. ...@@ -27,6 +27,9 @@ 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 Seagate U Series X family, Seagate U8 family, and Seagate
Medalist 8641 family to knowndrives table.
[CF] smartd: Added exit values 5/6 for missing/unreadable config file. [CF] smartd: Added exit values 5/6 for missing/unreadable config file.
[BA] smartd: now monitor the Current Pending Sector count (Attribute 197) [BA] smartd: now monitor the Current Pending Sector count (Attribute 197)
......
...@@ -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.99 2004/04/10 00:24:14 ballen4705 Exp $" const char *knowndrives_c_cvsid="$Id: knowndrives.c,v 1.100 2004/04/16 08:53:29 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
...@@ -510,8 +510,18 @@ const drivesettings knowndrives[] = { ...@@ -510,8 +510,18 @@ const drivesettings knowndrives[] = {
".*", ".*",
NULL, NULL, NULL, NULL NULL, NULL, NULL, NULL
}, },
{ // Seagate Barracuda U Series family { // Seagate Medalist 8641 family
"^ST3(8002|6002|4081|2041)0A$", "^ST3(2110|3221|4312|6531|8641)A$",
".*",
NULL, NULL, NULL, NULL
},
{ // Seagate U Series X family
"^ST3(10014A(CE)?|20014A)$",
".*",
NULL, NULL, NULL, NULL
},
{ // Seagate U Series 6 family
"^ST3(8002|6002|4081|3061|2041)0A$",
".*", ".*",
NULL, NULL, NULL, NULL NULL, NULL, NULL, NULL
}, },
...@@ -520,6 +530,11 @@ const drivesettings knowndrives[] = { ...@@ -520,6 +530,11 @@ const drivesettings knowndrives[] = {
".*", ".*",
NULL, NULL, NULL, NULL NULL, NULL, NULL, NULL
}, },
{ // Seagate U8 family
"^ST3(8410|4313|17221|13021)A$",
".*",
NULL, NULL, NULL, NULL
},
{ // Seagate Barracuda ATA II family { // Seagate Barracuda ATA II family
"^ST3(3063|2042|1532|1021)0A$", "^ST3(3063|2042|1532|1021)0A$",
".*", ".*",
......
...@@ -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.99 2004/04/10 00:24:14 ballen4705 Exp $" const char *knowndrives_c_cvsid="$Id: knowndrives.cpp,v 1.100 2004/04/16 08:53:29 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
...@@ -510,8 +510,18 @@ const drivesettings knowndrives[] = { ...@@ -510,8 +510,18 @@ const drivesettings knowndrives[] = {
".*", ".*",
NULL, NULL, NULL, NULL NULL, NULL, NULL, NULL
}, },
{ // Seagate Barracuda U Series family { // Seagate Medalist 8641 family
"^ST3(8002|6002|4081|2041)0A$", "^ST3(2110|3221|4312|6531|8641)A$",
".*",
NULL, NULL, NULL, NULL
},
{ // Seagate U Series X family
"^ST3(10014A(CE)?|20014A)$",
".*",
NULL, NULL, NULL, NULL
},
{ // Seagate U Series 6 family
"^ST3(8002|6002|4081|3061|2041)0A$",
".*", ".*",
NULL, NULL, NULL, NULL NULL, NULL, NULL, NULL
}, },
...@@ -520,6 +530,11 @@ const drivesettings knowndrives[] = { ...@@ -520,6 +530,11 @@ const drivesettings knowndrives[] = {
".*", ".*",
NULL, NULL, NULL, NULL NULL, NULL, NULL, NULL
}, },
{ // Seagate U8 family
"^ST3(8410|4313|17221|13021)A$",
".*",
NULL, NULL, NULL, NULL
},
{ // Seagate Barracuda ATA II family { // Seagate Barracuda ATA II family
"^ST3(3063|2042|1532|1021)0A$", "^ST3(3063|2042|1532|1021)0A$",
".*", ".*",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment