| 1 | /* |
|---|
| 2 | * drivedb.h - smartmontools drive database file |
|---|
| 3 | * |
|---|
| 4 | * Home page of code is: http://smartmontools.sourceforge.net |
|---|
| 5 | * |
|---|
| 6 | * Copyright (C) 2003-11 Philip Williams, Bruce Allen |
|---|
| 7 | * Copyright (C) 2008-11 Christian Franke <smartmontools-support@lists.sourceforge.net> |
|---|
| 8 | * |
|---|
| 9 | * This program is free software; you can redistribute it and/or modify |
|---|
| 10 | * it under the terms of the GNU General Public License as published by |
|---|
| 11 | * the Free Software Foundation; either version 2, or (at your option) |
|---|
| 12 | * any later version. |
|---|
| 13 | * |
|---|
| 14 | * You should have received a copy of the GNU General Public License |
|---|
| 15 | * (for example COPYING); If not, see <http://www.gnu.org/licenses/>. |
|---|
| 16 | * |
|---|
| 17 | */ |
|---|
| 18 | |
|---|
| 19 | /* |
|---|
| 20 | * Structure used to store drive database entries: |
|---|
| 21 | * |
|---|
| 22 | * struct drive_settings { |
|---|
| 23 | * const char * modelfamily; |
|---|
| 24 | * const char * modelregexp; |
|---|
| 25 | * const char * firmwareregexp; |
|---|
| 26 | * const char * warningmsg; |
|---|
| 27 | * const char * presets; |
|---|
| 28 | * }; |
|---|
| 29 | * |
|---|
| 30 | * The elements are used in the following ways: |
|---|
| 31 | * |
|---|
| 32 | * modelfamily Informal string about the model family/series of a |
|---|
| 33 | * device. Set to "" if no info (apart from device id) |
|---|
| 34 | * known. The entry is ignored if this string starts with |
|---|
| 35 | * a dollar sign. Must not start with "USB:", see below. |
|---|
| 36 | * modelregexp POSIX extended regular expression to match the model of |
|---|
| 37 | * a device. This should never be "". |
|---|
| 38 | * firmwareregexp POSIX extended regular expression to match a devices's |
|---|
| 39 | * firmware. This is optional and should be "" if it is not |
|---|
| 40 | * to be used. If it is nonempty then it will be used to |
|---|
| 41 | * narrow the set of devices matched by modelregexp. |
|---|
| 42 | * warningmsg A message that may be displayed for matching drives. For |
|---|
| 43 | * example, to inform the user that they may need to apply a |
|---|
| 44 | * firmware patch. |
|---|
| 45 | * presets String with vendor-specific attribute ('-v') and firmware |
|---|
| 46 | * bug fix ('-F') options. Same syntax as in smartctl command |
|---|
| 47 | * line. The user's own settings override these. |
|---|
| 48 | * |
|---|
| 49 | * The regular expressions for drive model and firmware must match the full |
|---|
| 50 | * string. The effect of "^FULLSTRING$" is identical to "FULLSTRING". |
|---|
| 51 | * The form ".*SUBSTRING.*" can be used if substring match is desired. |
|---|
| 52 | * |
|---|
| 53 | * The table will be searched from the start to end or until the first match, |
|---|
| 54 | * so the order in the table is important for distinct entries that could match |
|---|
| 55 | * the same drive. |
|---|
| 56 | * |
|---|
| 57 | * |
|---|
| 58 | * Format for USB ID entries: |
|---|
| 59 | * |
|---|
| 60 | * modelfamily String with format "USB: DEVICE; BRIDGE" where |
|---|
| 61 | * DEVICE is the name of the device and BRIDGE is |
|---|
| 62 | * the name of the USB bridge. Both may be empty |
|---|
| 63 | * if no info known. |
|---|
| 64 | * modelregexp POSIX extended regular expression to match the USB |
|---|
| 65 | * vendor:product ID in hex notation ("0x1234:0xabcd"). |
|---|
| 66 | * This should never be "". |
|---|
| 67 | * firmwareregexp POSIX extended regular expression to match the USB |
|---|
| 68 | * bcdDevice info. Only compared during search if other |
|---|
| 69 | * entries with same USB vendor:product ID exist. |
|---|
| 70 | * warningmsg Not used yet. |
|---|
| 71 | * presets String with one device type ('-d') option. |
|---|
| 72 | * |
|---|
| 73 | */ |
|---|
| 74 | |
|---|
| 75 | /* |
|---|
| 76 | const drive_settings builtin_knowndrives[] = { |
|---|
| 77 | */ |
|---|
| 78 | { "$Id$", |
|---|
| 79 | "-", "-", |
|---|
| 80 | "This is a dummy entry to hold the SVN-Id of drivedb.h", |
|---|
| 81 | "" |
|---|
| 82 | }, |
|---|
| 83 | { "Apple SSD SM128", // Samsung? |
|---|
| 84 | "APPLE SSD SM128", |
|---|
| 85 | "", "", "" |
|---|
| 86 | }, |
|---|
| 87 | { "Apple SSD TS*", // Toshiba? |
|---|
| 88 | // tested with APPLE SSD TS064C/CJAA0201 |
|---|
| 89 | "APPLE SSD TS.*", |
|---|
| 90 | "", "", |
|---|
| 91 | "-v 10,raw48,Unknown_Attribute " |
|---|
| 92 | "-v 240,raw48,Unknown_Attribute" |
|---|
| 93 | }, |
|---|
| 94 | { "Asus-Phison SSD", |
|---|
| 95 | "ASUS-PHISON SSD", |
|---|
| 96 | "", "", "" |
|---|
| 97 | }, |
|---|
| 98 | { "Crucial RealSSD C300 Series", // tested with C300-CTFDDAC128MAG/0002 |
|---|
| 99 | "C300-CTFDDA[AC](064|128|256)MAG", |
|---|
| 100 | "", "", |
|---|
| 101 | "-v 189,raw48,Unknown_Attribute " |
|---|
| 102 | "-v 202,raw48,Unknown_Attribute " |
|---|
| 103 | "-v 206,raw48,Unknown_Attribute" |
|---|
| 104 | }, |
|---|
| 105 | { "SandForce Driven SSDs", |
|---|
| 106 | "SandForce 1st Ed\\.|" // Demo Drive, tested with firmware 320A13F0 |
|---|
| 107 | "ADATA SSD S599 .?..GB|" // tested with ADATA SSD S599 256GB/3.1.0, 64GB/3.4.6 |
|---|
| 108 | "Corsair CSSD-F(40|60|80|120|160|240)GBP?2.*|" // Corsair Force, tested with |
|---|
| 109 | // Corsair CSSD-F40GB2/1.1 |
|---|
| 110 | "FTM(06|12|24|48)CT25H|" // Supertalent TeraDrive CT, tested with |
|---|
| 111 | // FTM24CT25H/STTMP2P1 |
|---|
| 112 | "OCZ[ -](AGILITY2([ -]EX)?|COLOSSUS2|ONYX2|VERTEX2|VERTEX-LE)( [123]\\..*)?|" // SF-1200, |
|---|
| 113 | // tested with OCZ-VERTEX2/1.11, OCZ-VERTEX2 3.5/1.11 |
|---|
| 114 | "OCZ[ -](VELO|VERTEX2[ -](EX|PRO))( [123]\\..*)?|" // SF-1500, tested with |
|---|
| 115 | // OCZ VERTEX2-PRO/1.10 (Bogus thresholds for attribute 232 and 235) |
|---|
| 116 | "(APOC|DENC|FTNC|GFGC|MANG|MMOC|NIMC|TMSC).*|" // other OCZ SF-1200 |
|---|
| 117 | "(DENR|DRSAK|EC188|NIMR|PSIR|TRSAK).*|" // other OCZ SF-1500 |
|---|
| 118 | "OWC Mercury Extreme Pro SSD|" // tested with firmware 360A13F0 |
|---|
| 119 | "UGB(88P|99S)GC...H[BF].", // Unigen, tested with |
|---|
| 120 | // UGB88PGC100HF2/MP Rev2, UGB99SGC100HB3/RC Rev3 |
|---|
| 121 | "", "", |
|---|
| 122 | "-v 1,raw24/raw32,Raw_Read_Error_Rate " |
|---|
| 123 | "-v 5,raw48,Retired_Block_Count " |
|---|
| 124 | "-v 9,msec24hour32,Power_On_Hours_and_Msec " |
|---|
| 125 | //"-v 12,raw48,Power_Cycle_Count " |
|---|
| 126 | "-v 13,raw24/raw32,Soft_Read_Error_Rate " |
|---|
| 127 | "-v 100,raw48,Gigabytes_Erased " |
|---|
| 128 | "-v 170,raw48,Reserve_Block_Count " |
|---|
| 129 | "-v 171,raw48,Program_Fail_Count " |
|---|
| 130 | "-v 172,raw48,Erase_Fail_Count " |
|---|
| 131 | "-v 174,raw48,Unexpect_Power_Loss_Ct " |
|---|
| 132 | "-v 177,raw48,Wear_Range_Delta " |
|---|
| 133 | "-v 181,raw48,Program_Fail_Count " |
|---|
| 134 | "-v 182,raw48,Erase_Fail_Count " |
|---|
| 135 | "-v 184,raw48,IO_Error_Detect_Code_Ct " |
|---|
| 136 | //"-v 187,raw48,Reported_Uncorrect " |
|---|
| 137 | //"-v 194,tempminmax,Temperature_Celsius " |
|---|
| 138 | "-v 195,raw24/raw32,ECC_Uncorr_Error_Count " |
|---|
| 139 | //"-v 196,raw48,Reallocated_Event_Count " |
|---|
| 140 | "-v 198,hex48,Uncorrectable_Sector_Ct " |
|---|
| 141 | "-v 199,raw48,SATA_CRC_Error_Count " |
|---|
| 142 | "-v 201,raw24/raw32,Unc_Soft_Read_Err_Rate " |
|---|
| 143 | "-v 204,raw24/raw32,Soft_ECC_Correct_Rate " |
|---|
| 144 | "-v 230,raw48,Life_Curve_Status " |
|---|
| 145 | "-v 231,raw48,SSD_Life_Left " |
|---|
| 146 | //"-v 232,raw48,Available_Reservd_Space " |
|---|
| 147 | "-v 233,raw48,SandForce_Internal " |
|---|
| 148 | "-v 234,raw48,SandForce_Internal " |
|---|
| 149 | "-v 235,raw48,SuperCap_Health " |
|---|
| 150 | "-v 241,raw48,Lifetime_Writes_GiB " |
|---|
| 151 | "-v 242,raw48,Lifetime_Reads_GiB" |
|---|
| 152 | }, |
|---|
| 153 | { "Indilinx Barefoot based SSDs", |
|---|
| 154 | "CRUCIAL_CT(64|128|256)M225|" // tested with CRUCIAL_CT64M225/1571 |
|---|
| 155 | "OCZ[ -](AGILITY|ONYX|VERTEX( 1199|-TURBO)?)|" // tested with |
|---|
| 156 | // OCZ-ONYX/1.6, OCZ-VERTEX 1199/00.P97, OCZ-VERTEX/1.30, OCZ VERTEX-TURBO/1.5 |
|---|
| 157 | "Patriot[ -]Torqx.*|" |
|---|
| 158 | "STT_FT[MD](28|32|56|64)GX25H|" // Super Talent Ultradrive, tested with STT_FTM64GX25H/1916 |
|---|
| 159 | "TS(18|25)M(64|128)MLC(16|32|64|128|256|512)GSSD|" // ASAX Leopard Hunt II, tested with TS25M64MLC64GSSD/0.1 |
|---|
| 160 | "FM-25S2I-(64|128)GBFII", // G.Skill FALCON II, tested with FM-25S2I-64GBFII |
|---|
| 161 | "", "", |
|---|
| 162 | "-v 1,raw64 " // Raw_Read_Error_Rate |
|---|
| 163 | "-v 9,raw64 " // Power_On_Hours |
|---|
| 164 | "-v 12,raw64 " // Power_Cycle_Count |
|---|
| 165 | "-v 184,raw64,Initial_Bad_Block_Count " |
|---|
| 166 | "-v 195,raw64,Program_Failure_Blk_Ct " |
|---|
| 167 | "-v 196,raw64,Erase_Failure_Blk_Ct " |
|---|
| 168 | "-v 197,raw64,Read_Failure_Blk_Ct " |
|---|
| 169 | "-v 198,raw64,Read_Sectors_Tot_Ct " |
|---|
| 170 | "-v 199,raw64,Write_Sectors_Tot_Ct " |
|---|
| 171 | "-v 200,raw64,Read_Commands_Tot_Ct " |
|---|
| 172 | "-v 201,raw64,Write_Commands_Tot_Ct " |
|---|
| 173 | "-v 202,raw64,Error_Bits_Flash_Tot_Ct " |
|---|
| 174 | "-v 203,raw64,Corr_Read_Errors_Tot_Ct " |
|---|
| 175 | "-v 204,raw64,Bad_Block_Full_Flag " |
|---|
| 176 | "-v 205,raw64,Max_PE_Count_Spec " |
|---|
| 177 | "-v 206,raw64,Min_Erase_Count " |
|---|
| 178 | "-v 207,raw64,Max_Erase_Count " |
|---|
| 179 | "-v 208,raw64,Average_Erase_Count " |
|---|
| 180 | "-v 209,raw64,Remaining_Lifetime_Perc " |
|---|
| 181 | "-v 210,raw64,Indilinx_Internal " |
|---|
| 182 | "-v 211,raw64,SATA_Error_Ct_CRC " |
|---|
| 183 | "-v 212,raw64,SATA_Error_Ct_Handshake " |
|---|
| 184 | "-v 213,raw64,Indilinx_Internal" |
|---|
| 185 | }, |
|---|
| 186 | { "Intel X25-E SSDs", |
|---|
| 187 | "SSDSA2SH(032|064)G1.* INTEL", // G1 = first generation |
|---|
| 188 | "", "", |
|---|
| 189 | //"-v 3,raw48,Spin_Up_Time " |
|---|
| 190 | //"-v 4,raw48,Start_Stop_Count " |
|---|
| 191 | //"-v 5,raw48,Reallocated_Sector_Ct " |
|---|
| 192 | //"-v 9,raw48,Power_On_Hours " |
|---|
| 193 | //"-v 12,raw48,Power_Cycle_Count " |
|---|
| 194 | "-v 192,raw48,Unsafe_Shutdown_Count " |
|---|
| 195 | "-v 225,raw48,Host_Writes_32MiB " |
|---|
| 196 | "-v 226,raw48,Intel_Internal " |
|---|
| 197 | "-v 227,raw48,Intel_Internal " |
|---|
| 198 | "-v 228,raw48,Intel_Internal " |
|---|
| 199 | //"-v 232,raw48,Available_Reservd_Space " |
|---|
| 200 | //"-v 233,raw48,Media_Wearout_Indicator" |
|---|
| 201 | }, |
|---|
| 202 | { "Intel X18-M/X25-M G1 SSDs", |
|---|
| 203 | "INTEL SSDSA[12]MH(080|160)G1.*", // G1 = first generation, 50nm |
|---|
| 204 | "", "", |
|---|
| 205 | //"-v 3,raw48,Spin_Up_Time " |
|---|
| 206 | //"-v 4,raw48,Start_Stop_Count " |
|---|
| 207 | //"-v 5,raw48,Reallocated_Sector_Ct " |
|---|
| 208 | //"-v 9,raw48,Power_On_Hours " |
|---|
| 209 | //"-v 12,raw48,Power_Cycle_Count " |
|---|
| 210 | "-v 192,raw48,Unsafe_Shutdown_Count " |
|---|
| 211 | "-v 225,raw48,Host_Writes_32MiB " |
|---|
| 212 | "-v 226,raw48,Intel_Internal " |
|---|
| 213 | "-v 227,raw48,Intel_Internal " |
|---|
| 214 | "-v 228,raw48,Intel_Internal " |
|---|
| 215 | //"-v 232,raw48,Available_Reservd_Space " |
|---|
| 216 | //"-v 233,raw48,Media_Wearout_Indicator" |
|---|
| 217 | }, |
|---|
| 218 | { "Intel X18-M/X25-M/X25-V G2 SSDs", // fixed firmware |
|---|
| 219 | // tested with INTEL SSDSA2M(080|160)G2GC/2CV102J8 (X25-M) |
|---|
| 220 | "INTEL SSDSA[12]M(040|080|160)G2.*", // G2 = second generation, 34nm |
|---|
| 221 | "2CV102(J[89A-Z]|[K-Z].)", // >= "2CV102J8" |
|---|
| 222 | "", |
|---|
| 223 | //"-v 3,raw48,Spin_Up_Time " |
|---|
| 224 | //"-v 4,raw48,Start_Stop_Count " |
|---|
| 225 | //"-v 5,raw48,Reallocated_Sector_Ct " |
|---|
| 226 | //"-v 9,raw48,Power_On_Hours " |
|---|
| 227 | //"-v 12,raw48,Power_Cycle_Count " |
|---|
| 228 | //"-v 184,raw48,End-to-End_Error " // G2 only |
|---|
| 229 | "-v 192,raw48,Unsafe_Shutdown_Count " |
|---|
| 230 | "-v 225,raw48,Host_Writes_32MiB " |
|---|
| 231 | "-v 226,raw48,Workld_Media_Wear_Indic " // Timed Workload Media Wear Indicator (percent*1024) |
|---|
| 232 | "-v 227,raw48,Workld_Host_Reads_Perc " // Timed Workload Host Reads Percentage |
|---|
| 233 | "-v 228,raw48,Workload_Minutes " // 226,227,228 can be reset by 'smartctl -t vendor,0x40' |
|---|
| 234 | //"-v 232,raw48,Available_Reservd_Space " |
|---|
| 235 | //"-v 233,raw48,Media_Wearout_Indicator" |
|---|
| 236 | }, |
|---|
| 237 | { "Intel X18-M/X25-M/X25-V G2 SSDs", // buggy or unknown firmware |
|---|
| 238 | // tested with INTEL SSDSA2M040G2GC/2CV102HD (X25-V) |
|---|
| 239 | "INTEL SSDSA[12]M(040|080|160)G2.*", |
|---|
| 240 | "", |
|---|
| 241 | "This drive may require a firmware update to\n" |
|---|
| 242 | "fix possible drive hangs when reading SMART self-test log:\n" |
|---|
| 243 | "http://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=18363", |
|---|
| 244 | "-v 192,raw48,Unsafe_Shutdown_Count " |
|---|
| 245 | "-v 225,raw48,Host_Writes_32MiB " |
|---|
| 246 | "-v 226,raw48,Workld_Media_Wear_Indic " |
|---|
| 247 | "-v 227,raw48,Workld_Host_Reads_Perc " |
|---|
| 248 | "-v 228,raw48,Workload_Minutes" |
|---|
| 249 | }, |
|---|
| 250 | { "Intel 320 Series SSDs", |
|---|
| 251 | "INTEL SSDSA[12]CW(040|080|120|160|300|600)G3", |
|---|
| 252 | "", "", |
|---|
| 253 | //"-v 3,raw48,Spin_Up_Time " |
|---|
| 254 | //"-v 4,raw48,Start_Stop_Count " |
|---|
| 255 | //"-v 5,raw48,Reallocated_Sector_Ct " |
|---|
| 256 | //"-v 9,raw48,Power_On_Hours " |
|---|
| 257 | //"-v 12,raw48,Power_Cycle_Count " |
|---|
| 258 | "-v 170,raw48,Reserve_Block_Count " |
|---|
| 259 | "-v 171,raw48,Program_Fail_Count " |
|---|
| 260 | "-v 172,raw48,Erase_Fail_Count " |
|---|
| 261 | //"-v 184,raw48,End-to-End_Error " |
|---|
| 262 | //"-v 187,raw48,Reported_Uncorrect " |
|---|
| 263 | "-v 192,raw48,Unsafe_Shutdown_Count " |
|---|
| 264 | "-v 225,raw48,Host_Writes_32MiB " |
|---|
| 265 | "-v 226,raw48,Workld_Media_Wear_Indic " // Timed Workload Media Wear Indicator (percent*1024) |
|---|
| 266 | "-v 227,raw48,Workld_Host_Reads_Perc " // Timed Workload Host Reads Percentage |
|---|
| 267 | "-v 228,raw48,Workload_Minutes " // 226,227,228 can be reset by 'smartctl -t vendor,0x40' |
|---|
| 268 | //"-v 232,raw48,Available_Reservd_Space " |
|---|
| 269 | //"-v 233,raw48,Media_Wearout_Indicator " |
|---|
| 270 | "-v 241,raw48,Host_Writes_32MiB " |
|---|
| 271 | "-v 242,raw48,Host_Reads_32MiB" |
|---|
| 272 | }, |
|---|
| 273 | { "Intel 510 Series SSDs", |
|---|
| 274 | "INTEL SSDSC2MH(120|250)A2", |
|---|
| 275 | "", "", |
|---|
| 276 | //"-v 3,raw48,Spin_Up_Time " |
|---|
| 277 | //"-v 4,raw48,Start_Stop_Count " |
|---|
| 278 | //"-v 5,raw48,Reallocated_Sector_Ct " |
|---|
| 279 | //"-v 9,raw48,Power_On_Hours " |
|---|
| 280 | //"-v 12,raw48,Power_Cycle_Count " |
|---|
| 281 | "-v 192,raw48,Unsafe_Shutdown_Count " |
|---|
| 282 | "-v 225,raw48,Host_Writes_32MiB " |
|---|
| 283 | //"-v 232,raw48,Available_Reservd_Space " |
|---|
| 284 | //"-v 233,raw48,Media_Wearout_Indicator" |
|---|
| 285 | }, |
|---|
| 286 | { "Kingston branded X25-V SSDs", // fixed firmware |
|---|
| 287 | "KINGSTON SSDNow 40GB", |
|---|
| 288 | "2CV102(J[89A-Z]|[K-Z].)", // >= "2CV102J8" |
|---|
| 289 | "", |
|---|
| 290 | "-v 192,raw48,Unsafe_Shutdown_Count " |
|---|
| 291 | "-v 225,raw48,Host_Writes_32MiB " |
|---|
| 292 | "-v 226,raw48,Workld_Media_Wear_Indic " |
|---|
| 293 | "-v 227,raw48,Workld_Host_Reads_Perc " |
|---|
| 294 | "-v 228,raw48,Workload_Minutes" |
|---|
| 295 | }, |
|---|
| 296 | { "Kingston branded X25-V SSDs", // buggy or unknown firmware |
|---|
| 297 | "KINGSTON SSDNow 40GB", |
|---|
| 298 | "", |
|---|
| 299 | "This drive may require a firmware update to\n" |
|---|
| 300 | "fix possible drive hangs when reading SMART self-test log.\n" |
|---|
| 301 | "To update Kingston branded drives, a modified Intel update\n" |
|---|
| 302 | "tool must be used. Search for \"kingston 40gb firmware\".", |
|---|
| 303 | "-v 192,raw48,Unsafe_Shutdown_Count " |
|---|
| 304 | "-v 225,raw48,Host_Writes_32MiB " |
|---|
| 305 | "-v 226,raw48,Workld_Media_Wear_Indic " |
|---|
| 306 | "-v 227,raw48,Workld_Host_Reads_Perc " |
|---|
| 307 | "-v 228,raw48,Workload_Minutes" |
|---|
| 308 | }, |
|---|
| 309 | { "Kingston SSDNow V Series", // tested with KINGSTON SNV425S264GB/C091126a |
|---|
| 310 | "KINGSTON SNV425S2(64|128)GB", |
|---|
| 311 | "", "", |
|---|
| 312 | "-v 3,raw48,Unknown_Attribute " |
|---|
| 313 | "-v 7,raw48,Unknown_Attribute " |
|---|
| 314 | "-v 8,raw48,Unknown_Attribute " |
|---|
| 315 | "-v 10,raw48,Unknown_Attribute " |
|---|
| 316 | "-v 240,raw48,Unknown_Attribute" |
|---|
| 317 | }, |
|---|
| 318 | { "Transcend IDE Solid State Drive", |
|---|
| 319 | "TS(8|16|32|64|128)GSSD25-(M|S)", |
|---|
| 320 | "", "", "" |
|---|
| 321 | }, |
|---|
| 322 | { "Transcend SATA Solid State Drive", |
|---|
| 323 | "TS(8|16|32|64|128|192)GSSD25S-(M|S)", |
|---|
| 324 | "", "", |
|---|
| 325 | "-v 229,hex64,Halt_System_ID " |
|---|
| 326 | "-v 232,hex64,Firmware_Version_Info " |
|---|
| 327 | "-v 233,hex64,ECC_Fail_Record " |
|---|
| 328 | "-v 234,raw24/raw24,Erase_Count_Avg/Max " |
|---|
| 329 | "-v 235,raw24/raw24,Block_Count_Good/System" |
|---|
| 330 | }, |
|---|
| 331 | { "Transcend Ultra Series Solid State Drive (SATA II)", |
|---|
| 332 | "TS(60|120)GSSD25D-M", |
|---|
| 333 | "", "", "" |
|---|
| 334 | }, |
|---|
| 335 | { "Transcend CompactFlash Cards", // tested with TRANSCEND/20080820, TS4GCF133/20100709 |
|---|
| 336 | "TRANSCEND|TS4GCF133", |
|---|
| 337 | "", "", |
|---|
| 338 | "-v 7,raw48,Unknown_Attribute " |
|---|
| 339 | "-v 8,raw48,Unknown_Attribute" |
|---|
| 340 | }, |
|---|
| 341 | { "Marvell SSD SD88SA024BA0 (SUN branded)", |
|---|
| 342 | "MARVELL SD88SA024BA0 SUN24G 0902M0054V", |
|---|
| 343 | "", "", "" |
|---|
| 344 | }, |
|---|
| 345 | { "HP 1TB SATA disk GB1000EAFJL", |
|---|
| 346 | "GB1000EAFJL", |
|---|
| 347 | "", "", "" |
|---|
| 348 | }, |
|---|
| 349 | { "HP 500GB SATA disk MM0500EANCR", |
|---|
| 350 | "MM0500EANCR", |
|---|
| 351 | "", "", "" |
|---|
| 352 | }, |
|---|
| 353 | { "HP 250GB SATA disk VB0250EAVER", |
|---|
| 354 | "VB0250EAVER", |
|---|
| 355 | "", "", "" |
|---|
| 356 | }, |
|---|
| 357 | { "IBM Deskstar 60GXP series", // ER60A46A firmware |
|---|
| 358 | "(IBM-|Hitachi )?IC35L0[12346]0AVER07.*", |
|---|
| 359 | "ER60A46A", |
|---|
| 360 | "", "" |
|---|
| 361 | }, |
|---|
| 362 | { "IBM Deskstar 60GXP series", // All other firmware |
|---|
| 363 | "(IBM-|Hitachi )?IC35L0[12346]0AVER07.*", |
|---|
| 364 | "", |
|---|
| 365 | "IBM Deskstar 60GXP drives may need upgraded SMART firmware.\n" |
|---|
| 366 | "Please see http://haque.net/dtla_update/ and\n" |
|---|
| 367 | "http://www.ibm.com/pc/support/site.wss/MIGR-42215.html", |
|---|
| 368 | "" |
|---|
| 369 | }, |
|---|
| 370 | { "IBM Deskstar 40GV & 75GXP series (A5AA/A6AA firmware)", |
|---|
| 371 | "(IBM-)?DTLA-30[57]0[123467][05].*", |
|---|
| 372 | "T[WX][123468AG][OF]A[56]AA", |
|---|
| 373 | "", "" |
|---|
| 374 | }, |
|---|
| 375 | { "IBM Deskstar 40GV & 75GXP series (all other firmware)", |
|---|
| 376 | "(IBM-)?DTLA-30[57]0[123467][05].*", |
|---|
| 377 | "", |
|---|
| 378 | "IBM Deskstar 40GV and 75GXP drives may need upgraded SMART firmware.\n" |
|---|
| 379 | "Please see http://haque.net/dtla_update/ and\n" |
|---|
| 380 | "http://www.ibm.com/pc/support/site.wss/MIGR-42215.html", |
|---|
| 381 | "" |
|---|
| 382 | }, |
|---|
| 383 | { "", // ExcelStor J240, J340, J360, J680, J880 and J8160 |
|---|
| 384 | "ExcelStor Technology J(24|34|36|68|88|816)0", |
|---|
| 385 | "", "", "" |
|---|
| 386 | }, |
|---|
| 387 | { "", // Fujitsu M1623TAU |
|---|
| 388 | "FUJITSU M1623TAU", |
|---|
| 389 | "", |
|---|
| 390 | "", |
|---|
| 391 | "-v 9,seconds" |
|---|
| 392 | }, |
|---|
| 393 | { "Fujitsu MHG series", |
|---|
| 394 | "FUJITSU MHG2...ATU?.*", |
|---|
| 395 | "", |
|---|
| 396 | "", |
|---|
| 397 | "-v 9,seconds" |
|---|
| 398 | }, |
|---|
| 399 | { "Fujitsu MHH series", |
|---|
| 400 | "FUJITSU MHH2...ATU?.*", |
|---|
| 401 | "", |
|---|
| 402 | "", |
|---|
| 403 | "-v 9,seconds" |
|---|
| 404 | }, |
|---|
| 405 | { "Fujitsu MHJ series", |
|---|
| 406 | "FUJITSU MHJ2...ATU?.*", |
|---|
| 407 | "", |
|---|
| 408 | "", |
|---|
| 409 | "-v 9,seconds" |
|---|
| 410 | }, |
|---|
| 411 | { "Fujitsu MHK series", |
|---|
| 412 | "FUJITSU MHK2...ATU?.*", |
|---|
| 413 | "", |
|---|
| 414 | "", |
|---|
| 415 | "-v 9,seconds" |
|---|
| 416 | }, |
|---|
| 417 | { "", // Fujitsu MHL2300AT |
|---|
| 418 | "FUJITSU MHL2300AT", |
|---|
| 419 | "", |
|---|
| 420 | "This drive's firmware has a harmless Drive Identity Structure\n" |
|---|
| 421 | "checksum error bug.", |
|---|
| 422 | "-v 9,seconds" |
|---|
| 423 | }, |
|---|
| 424 | { "", // MHM2200AT, MHM2150AT, MHM2100AT, MHM2060AT |
|---|
| 425 | "FUJITSU MHM2(20|15|10|06)0AT", |
|---|
| 426 | "", |
|---|
| 427 | "This drive's firmware has a harmless Drive Identity Structure\n" |
|---|
| 428 | "checksum error bug.", |
|---|
| 429 | "-v 9,seconds" |
|---|
| 430 | }, |
|---|
| 431 | { "Fujitsu MHN series", |
|---|
| 432 | "FUJITSU MHN2...AT", |
|---|
| 433 | "", |
|---|
| 434 | "", |
|---|
| 435 | "-v 9,seconds" |
|---|
| 436 | }, |
|---|
| 437 | { "", // Fujitsu MHR2020AT |
|---|
| 438 | "FUJITSU MHR2020AT", |
|---|
| 439 | "", |
|---|
| 440 | "", |
|---|
| 441 | "-v 9,seconds" |
|---|
| 442 | }, |
|---|
| 443 | { "", // Fujitsu MHR2040AT |
|---|
| 444 | "FUJITSU MHR2040AT", |
|---|
| 445 | "", // Tested on 40BA |
|---|
| 446 | "", |
|---|
| 447 | "-v 9,seconds -v 192,emergencyretractcyclect " |
|---|
| 448 | "-v 198,offlinescanuncsectorct -v 200,writeerrorcount" |
|---|
| 449 | }, |
|---|
| 450 | { "Fujitsu MHSxxxxAT family", |
|---|
| 451 | "FUJITSU MHS20[6432]0AT( .)?", |
|---|
| 452 | "", |
|---|
| 453 | "", |
|---|
| 454 | "-v 9,seconds -v 192,emergencyretractcyclect " |
|---|
| 455 | "-v 198,offlinescanuncsectorct -v 200,writeerrorcount " |
|---|
| 456 | "-v 201,detectedtacount" |
|---|
| 457 | }, |
|---|
| 458 | { "Fujitsu MHT", // tested with FUJITSU MHT2030AC/909B |
|---|
| 459 | "FUJITSU MHT2...(AC|AH|AS|AT|BH)U?.*", |
|---|
| 460 | "", |
|---|
| 461 | "", |
|---|
| 462 | "-v 9,seconds" |
|---|
| 463 | }, |
|---|
| 464 | { "Fujitsu MHU series", |
|---|
| 465 | "FUJITSU MHU2...ATU?.*", |
|---|
| 466 | "", |
|---|
| 467 | "", |
|---|
| 468 | "-v 9,seconds" |
|---|
| 469 | }, |
|---|
| 470 | { "Fujitsu MHV series", |
|---|
| 471 | "FUJITSU MHV2...(AH|AS|AT|BH|BS|BT).*", |
|---|
| 472 | "", |
|---|
| 473 | "", |
|---|
| 474 | "-v 9,seconds" |
|---|
| 475 | }, |
|---|
| 476 | { "Fujitsu MPA..MPG series", |
|---|
| 477 | "FUJITSU MP[A-G]3...A[HTEV]U?.*", |
|---|
| 478 | "", |
|---|
| 479 | "", |
|---|
| 480 | "-v 9,seconds" |
|---|
| 481 | }, |
|---|
| 482 | { "Fujitsu MHY2 BH series", |
|---|
| 483 | "FUJITSU MHY2(04|06|08|10|12|16|20|25)0BH.*", |
|---|
| 484 | "", "", |
|---|
| 485 | "-v 240,raw48,Transfer_Error_Rate" |
|---|
| 486 | }, |
|---|
| 487 | { "Fujitsu MHW2 AC", // tested with FUJITSU MHW2060AC/00900004 |
|---|
| 488 | "FUJITSU MHW20(40|60)AC", |
|---|
| 489 | "", "", "" |
|---|
| 490 | }, |
|---|
| 491 | { "Fujitsu MHW2 BH series", |
|---|
| 492 | "FUJITSU MHW2(04|06|08|10|12|16)0BH.*", |
|---|
| 493 | "", "", "" |
|---|
| 494 | }, |
|---|
| 495 | { "Fujitsu MHW2 BJ series", |
|---|
| 496 | "FUJITSU MHW2(08|12|16)0BJ.*", |
|---|
| 497 | "", "", "" |
|---|
| 498 | }, |
|---|
| 499 | { "Fujitsu MHZ2 BH series", |
|---|
| 500 | "FUJITSU MHZ2(04|08|12|16|20|25|32)0BH.*", |
|---|
| 501 | "", "", "" |
|---|
| 502 | }, |
|---|
| 503 | { "Fujitsu MHZ2 BJ series", |
|---|
| 504 | "FUJITSU MHZ2(08|12|16|20|25|32)0BJ.*", |
|---|
| 505 | "", |
|---|
| 506 | "", |
|---|
| 507 | "-v 9,minutes" |
|---|
| 508 | }, |
|---|
| 509 | { "Fujitsu MHZ2 BS series", |
|---|
| 510 | "FUJITSU MHZ2(12|25)0BS.*", |
|---|
| 511 | "", "", "" |
|---|
| 512 | }, |
|---|
| 513 | { "Fujitsu MHZ2 BK series", |
|---|
| 514 | "FUJITSU MHZ2(08|12|16|25)0BK.*", |
|---|
| 515 | "", "", "" |
|---|
| 516 | }, |
|---|
| 517 | { "Fujitsu MJA2 BH series", |
|---|
| 518 | "FUJITSU MJA2(08|12|16|25|32|40|50)0BH.*", |
|---|
| 519 | "", "", "" |
|---|
| 520 | }, |
|---|
| 521 | { "", // Samsung SV4012H (known firmware) |
|---|
| 522 | "SAMSUNG SV4012H", |
|---|
| 523 | "RM100-08", |
|---|
| 524 | "", |
|---|
| 525 | "-v 9,halfminutes -F samsung" |
|---|
| 526 | }, |
|---|
| 527 | { "", // Samsung SV4012H (all other firmware) |
|---|
| 528 | "SAMSUNG SV4012H", |
|---|
| 529 | "", |
|---|
| 530 | "May need -F samsung disabled; see manual for details.", |
|---|
| 531 | "-v 9,halfminutes -F samsung" |
|---|
| 532 | }, |
|---|
| 533 | { "", // Samsung SV0412H (known firmware) |
|---|
| 534 | "SAMSUNG SV0412H", |
|---|
| 535 | "SK100-01", |
|---|
| 536 | "", |
|---|
| 537 | "-v 9,halfminutes -v 194,10xCelsius -F samsung" |
|---|
| 538 | }, |
|---|
| 539 | { "", // Samsung SV0412H (all other firmware) |
|---|
| 540 | "SAMSUNG SV0412H", |
|---|
| 541 | "", |
|---|
| 542 | "May need -F samsung disabled; see manual for details.", |
|---|
| 543 | "-v 9,halfminutes -v 194,10xCelsius -F samsung" |
|---|
| 544 | }, |
|---|
| 545 | { "", // Samsung SV1204H (known firmware) |
|---|
| 546 | "SAMSUNG SV1204H", |
|---|
| 547 | "RK100-1[3-5]", |
|---|
| 548 | "", |
|---|
| 549 | "-v 9,halfminutes -v 194,10xCelsius -F samsung" |
|---|
| 550 | }, |
|---|
| 551 | { "", // Samsung SV1204H (all other firmware) |
|---|
| 552 | "SAMSUNG SV1204H", |
|---|
| 553 | "", |
|---|
| 554 | "May need -F samsung disabled; see manual for details.", |
|---|
| 555 | "-v 9,halfminutes -v 194,10xCelsius -F samsung" |
|---|
| 556 | }, |
|---|
| 557 | { "", // SAMSUNG SV0322A tested with FW JK200-35 |
|---|
| 558 | "SAMSUNG SV0322A", |
|---|
| 559 | "", "", "" |
|---|
| 560 | }, |
|---|
| 561 | { "SAMSUNG SpinPoint V80 series", // tested with SV1604N/TR100-23 |
|---|
| 562 | "SAMSUNG SV(0211|0401|0612|0802|1203|1604)N", |
|---|
| 563 | "", |
|---|
| 564 | "", |
|---|
| 565 | "-v 9,halfminutes -F samsung2" |
|---|
| 566 | }, |
|---|
| 567 | { "", // SAMSUNG SP40A2H with RR100-07 firmware |
|---|
| 568 | "SAMSUNG SP40A2H", |
|---|
| 569 | "RR100-07", |
|---|
| 570 | "", |
|---|
| 571 | "-v 9,halfminutes -F samsung" |
|---|
| 572 | }, |
|---|
| 573 | { "", // SAMSUNG SP80A4H with RT100-06 firmware |
|---|
| 574 | "SAMSUNG SP80A4H", |
|---|
| 575 | "RT100-06", |
|---|
| 576 | "", |
|---|
| 577 | "-v 9,halfminutes -F samsung" |
|---|
| 578 | }, |
|---|
| 579 | { "", // SAMSUNG SP8004H with QW100-61 firmware |
|---|
| 580 | "SAMSUNG SP8004H", |
|---|
| 581 | "QW100-61", |
|---|
| 582 | "", |
|---|
| 583 | "-v 9,halfminutes -F samsung" |
|---|
| 584 | }, |
|---|
| 585 | { "SAMSUNG SpinPoint F1 DT series", // tested with HD103UJ/1AA01113 |
|---|
| 586 | "SAMSUNG HD(083G|16[12]G|25[12]H|32[12]H|50[12]I|642J|75[23]L|10[23]U)J", |
|---|
| 587 | "", "", "" |
|---|
| 588 | }, |
|---|
| 589 | { "SAMSUNG SpinPoint F1 RE series", // tested with HE103UJ/1AA01113 |
|---|
| 590 | "SAMSUNG HE(252H|322H|502I|642J|753L|103U)J", |
|---|
| 591 | "", "", "" |
|---|
| 592 | }, |
|---|
| 593 | { "SAMSUNG SpinPoint F2 EG series", // tested with HD154UI/1AG01118 |
|---|
| 594 | "SAMSUNG HD(502H|10[23]S|15[34]U)I", |
|---|
| 595 | "", "", "" |
|---|
| 596 | }, |
|---|
| 597 | { "SAMSUNG SpinPoint F3 series", // tested with HD502HJ/1AJ100E4 |
|---|
| 598 | "SAMSUNG HD(502H|754J|103S)J", |
|---|
| 599 | "", "", "" |
|---|
| 600 | }, |
|---|
| 601 | { "SAMSUNG SpinPoint F3 EG series", // tested with HD503HI/1AJ100E4, HD153WI/1AN10002 |
|---|
| 602 | "SAMSUNG HD(253G|(324|503)H|754J|105S|(153|203)W)I", |
|---|
| 603 | "", "", "" |
|---|
| 604 | }, |
|---|
| 605 | { "SAMSUNG SpinPoint F4 EG (AFT)",// tested with HD204UI/1AQ10001(buggy|fixed) |
|---|
| 606 | "SAMSUNG HD(155|204)UI", |
|---|
| 607 | "", // 1AQ10001 |
|---|
| 608 | "Using smartmontools or hdparm with this\n" |
|---|
| 609 | "drive may result in data loss due to a firmware bug.\n" |
|---|
| 610 | "****** THIS DRIVE MAY OR MAY NOT BE AFFECTED! ******\n" |
|---|
| 611 | "Buggy and fixed firmware report same version number!\n" |
|---|
| 612 | "See the following web pages for details:\n" |
|---|
| 613 | "http://www.samsung.com/global/business/hdd/faqView.do?b2b_bbs_msg_id=386\n" |
|---|
| 614 | "http://sourceforge.net/apps/trac/smartmontools/wiki/SamsungF4EGBadBlocks", |
|---|
| 615 | "" |
|---|
| 616 | }, |
|---|
| 617 | { "SAMSUNG SpinPoint S250 series", // tested with HD200HJ/KF100-06 |
|---|
| 618 | "SAMSUNG HD(162|200|250)HJ", |
|---|
| 619 | "", "", "" |
|---|
| 620 | }, |
|---|
| 621 | { "SAMSUNG SpinPoint T133 series", // tested with HD300LJ/ZT100-12, HD400LJ/ZZ100-14, HD401LJ/ZZ100-15 |
|---|
| 622 | "SAMSUNG HD(250KD|(30[01]|320|40[01])L[DJ])", |
|---|
| 623 | "", "", "" |
|---|
| 624 | }, |
|---|
| 625 | { "SAMSUNG SpinPoint T166", // tested with HD501LJ/CR100-1[01] |
|---|
| 626 | "SAMSUNG HD(080G|160H|32[01]K|403L|50[01]L)J", |
|---|
| 627 | "", "", |
|---|
| 628 | "-v 197,increasing" // at least HD501LJ/CR100-11 |
|---|
| 629 | }, |
|---|
| 630 | { "SAMSUNG SpinPoint P120 series", // VF100-37 firmware, tested with SP2514N/VF100-37 |
|---|
| 631 | "SAMSUNG SP(16[01]3|2[05][01]4)[CN]", |
|---|
| 632 | "VF100-37", |
|---|
| 633 | "", |
|---|
| 634 | "-F samsung3" |
|---|
| 635 | }, |
|---|
| 636 | { "SAMSUNG SpinPoint P120 series", // other firmware, tested with SP2504C/VT100-33 |
|---|
| 637 | "SAMSUNG SP(16[01]3|2[05][01]4)[CN]", |
|---|
| 638 | "", |
|---|
| 639 | "May need -F samsung3 enabled; see manual for details.", |
|---|
| 640 | "" |
|---|
| 641 | }, |
|---|
| 642 | { "SAMSUNG SpinPoint P80 SD series", // tested with HD160JJ/ZM100-33 |
|---|
| 643 | "SAMSUNG HD(080H|120I|160J)J", |
|---|
| 644 | "", "", "" |
|---|
| 645 | }, |
|---|
| 646 | { "SAMSUNG SpinPoint P80 series", // BH100-35 firmware, tested with SP0842N/BH100-35 |
|---|
| 647 | "SAMSUNG SP(0451|08[0124]2|12[0145]3|16[0145]4)[CN]", |
|---|
| 648 | "BH100-35", |
|---|
| 649 | "", |
|---|
| 650 | "-F samsung3" |
|---|
| 651 | }, |
|---|
| 652 | { "SAMSUNG SpinPoint P80 series", // firmware *-35 or later |
|---|
| 653 | "SAMSUNG SP(0451|08[0124]2|12[0145]3|16[0145]4)[CN]", |
|---|
| 654 | ".*-3[5-9]", |
|---|
| 655 | "May need -F samsung3 enabled; see manual for details.", |
|---|
| 656 | "" |
|---|
| 657 | }, |
|---|
| 658 | { "SAMSUNG SpinPoint P80 series", // firmware *-25...34, tested with SP1614C/SW100-25 and -34 |
|---|
| 659 | "SAMSUNG SP(0451|08[0124]2|12[0145]3|16[0145]4)[CN]", |
|---|
| 660 | ".*-(2[5-9]|3[0-4])", |
|---|
| 661 | "", |
|---|
| 662 | "-v 9,halfminutes -v 198,increasing" |
|---|
| 663 | }, |
|---|
| 664 | { "SAMSUNG SpinPoint P80 series", // firmware *-23...24, tested with |
|---|
| 665 | // SP0802N/TK100-23, |
|---|
| 666 | // SP1213N/TL100-23, |
|---|
| 667 | // SP1604N/TM100-23 and -24 |
|---|
| 668 | "SAMSUNG SP(0451|08[0124]2|12[0145]3|16[0145]4)[CN]", |
|---|
| 669 | ".*-2[34]", |
|---|
| 670 | "", |
|---|
| 671 | "-v 9,halfminutes -F samsung2" |
|---|
| 672 | }, |
|---|
| 673 | { "SAMSUNG SpinPoint P80 series", // unknown firmware |
|---|
| 674 | "SAMSUNG SP(0451|08[0124]2|12[0145]3|16[0145]4)[CN]", |
|---|
| 675 | "", |
|---|
| 676 | "May need -F samsung2 or -F samsung3 enabled; see manual for details.", |
|---|
| 677 | "" |
|---|
| 678 | }, |
|---|
| 679 | { "SAMSUNG SpinPoint M40/60/80 series", // tested with HM160JI/AD100-16 |
|---|
| 680 | "SAMSUNG HM(0[468]0H|1[026]0J)[CI]", |
|---|
| 681 | "", |
|---|
| 682 | "", |
|---|
| 683 | "-v 9,halfminutes" |
|---|
| 684 | }, |
|---|
| 685 | { "SAMSUNG SpinPoint M5 series", // tested with HM160HI/HH100-12 |
|---|
| 686 | "SAMSUNG HM(((061|080)G|(121|160)H|250J)I|160HC)", |
|---|
| 687 | "", "", "" |
|---|
| 688 | }, |
|---|
| 689 | { "SAMSUNG SpinPoint M6", // tested with HM320JI/2SS00_01 M6 |
|---|
| 690 | "SAMSUNG HM(251J|320[HJ]|[45]00L)I", |
|---|
| 691 | "", "", "" |
|---|
| 692 | }, |
|---|
| 693 | { "SAMSUNG SpinPoint M7 series", // tested with HM500JI/2AC101C4 |
|---|
| 694 | "SAMSUNG HM(250H|320I|[45]00J)I", |
|---|
| 695 | "", "", "" |
|---|
| 696 | }, |
|---|
| 697 | { "SAMSUNG SpinPoint M7E (AFT)", // tested with HM321HI/2AJ10001, HM641JI/2AJ10001 |
|---|
| 698 | "SAMSUNG HM(161G|(251|321)H|501I|641J)I", |
|---|
| 699 | "", "", "" |
|---|
| 700 | }, |
|---|
| 701 | { "SAMSUNG SpinPoint MT2", // tested with HM100UI/2AM10001 |
|---|
| 702 | "SAMSUNG HM100UI", |
|---|
| 703 | "", "", "" |
|---|
| 704 | }, |
|---|
| 705 | { "SAMSUNG HM100UX (S2 Portable)", // tested with HM100UX/2AM10001 |
|---|
| 706 | "SAMSUNG HM100UX", |
|---|
| 707 | "", "", "" |
|---|
| 708 | }, |
|---|
| 709 | { "SAMSUNG SpinPoint M series", // tested with MP0402H/UC100-11 |
|---|
| 710 | "SAMSUNG MP0(302|402|603|804)H", |
|---|
| 711 | "", |
|---|
| 712 | "", |
|---|
| 713 | "-v 9,halfminutes" |
|---|
| 714 | }, |
|---|
| 715 | { "SAMSUNG SpinPoint N3U-3 (USB, 4KiB LLS)", // tested with HS25YJZ/3AU10-01 |
|---|
| 716 | "SAMSUNG HS(122H|2[05]YJ)Z", |
|---|
| 717 | "", "", "" |
|---|
| 718 | }, |
|---|
| 719 | { "SAMSUNG PM800 SSDs", // tested with SAMSUNG SSD PM800 TH 64GB/VBM25D1Q |
|---|
| 720 | "SAMSUNG SSD PM800 .*GB", |
|---|
| 721 | "", "", "" |
|---|
| 722 | }, |
|---|
| 723 | { "SAMSUNG PM810 (470 series) SSDs", // tested with SAMSUNG SSD PM810 2.5" 128GB/AXM06D1Q |
|---|
| 724 | "SAMSUNG SSD PM810 .*GB", |
|---|
| 725 | "", "", "" |
|---|
| 726 | }, |
|---|
| 727 | /* |
|---|
| 728 | // TODO: Make the entries below more specific. |
|---|
| 729 | // These entries produce misleading results, because newer |
|---|
| 730 | // Samsung disks reuse the version numbers *-NN. |
|---|
| 731 | { "", // All Samsung drives with '.*-25' firmware |
|---|
| 732 | "SAMSUNG.*", |
|---|
| 733 | ".*-25", |
|---|
| 734 | "May need -F samsung2 disabled; see manual for details.", |
|---|
| 735 | "-v 9,halfminutes -F samsung2" |
|---|
| 736 | }, |
|---|
| 737 | { "", // All Samsung drives with '.*-26 or later (currently to -39)' firmware |
|---|
| 738 | "SAMSUNG.*", |
|---|
| 739 | ".*-(2[6789]|3[0-9])", |
|---|
| 740 | "", |
|---|
| 741 | "-v 9,halfminutes" |
|---|
| 742 | }, |
|---|
| 743 | { "", // Samsung ALL OTHER DRIVES |
|---|
| 744 | "SAMSUNG.*", |
|---|
| 745 | "", |
|---|
| 746 | "May need -F samsung or -F samsung2 enabled; see manual for details.", |
|---|
| 747 | "" |
|---|
| 748 | }, |
|---|
| 749 | */ |
|---|
| 750 | { "Maxtor Fireball 541DX family", |
|---|
| 751 | "Maxtor 2B0(0[468]|1[05]|20)H1", |
|---|
| 752 | "", |
|---|
| 753 | "", |
|---|
| 754 | "-v 9,minutes -v 194,unknown" |
|---|
| 755 | }, |
|---|
| 756 | { "Maxtor Fireball 3 family", |
|---|
| 757 | "Maxtor 2F0[234]0[JL]0", |
|---|
| 758 | "", |
|---|
| 759 | "", |
|---|
| 760 | "-v 9,minutes" |
|---|
| 761 | }, |
|---|
| 762 | { "Maxtor DiamondMax 1280 ATA family", // no self-test log, ATA2-Fast |
|---|
| 763 | "Maxtor 8(1280A2|2160A4|2560A4|3840A6|4000A6|5120A8)", |
|---|
| 764 | "", |
|---|
| 765 | "", |
|---|
| 766 | "-v 9,minutes" |
|---|
| 767 | }, |
|---|
| 768 | { "Maxtor DiamondMax 2160 Ultra ATA family", |
|---|
| 769 | "Maxtor 8(2160D2|3228D3|3240D3|4320D4|6480D6|8400D8|8455D8)", |
|---|
| 770 | "", |
|---|
| 771 | "", |
|---|
| 772 | "-v 9,minutes" |
|---|
| 773 | }, |
|---|
| 774 | { "Maxtor DiamondMax 2880 Ultra ATA family", |
|---|
| 775 | "Maxtor 9(0510D4|0576D4|0648D5|0720D5|0840D6|0845D6|0864D6|1008D7|1080D8|1152D8)", |
|---|
| 776 | "", |
|---|
| 777 | "", |
|---|
| 778 | "-v 9,minutes" |
|---|
| 779 | }, |
|---|
| 780 | { "Maxtor DiamondMax 3400 Ultra ATA family", |
|---|
| 781 | "Maxtor 9(1(360|350|202)D8|1190D7|10[12]0D6|0840D5|06[48]0D4|0510D3|1(350|202)E8|1010E6|0840E5|0640E4)", |
|---|
| 782 | "", |
|---|
| 783 | "", |
|---|
| 784 | "-v 9,minutes" |
|---|
| 785 | }, |
|---|
| 786 | { "Maxtor DiamondMax D540X-4G family", |
|---|
| 787 | "Maxtor 4G(120J6|160J[68])", |
|---|
| 788 | "", |
|---|
| 789 | "", |
|---|
| 790 | "-v 9,minutes -v 194,unknown" |
|---|
| 791 | }, |
|---|
| 792 | { "Maxtor DiamondMax D540X-4K family", |
|---|
| 793 | "MAXTOR 4K(020H1|040H2|060H3|080H4)", |
|---|
| 794 | "", "", "" |
|---|
| 795 | }, |
|---|
| 796 | { "Maxtor DiamondMax Plus D740X family", |
|---|
| 797 | "MAXTOR 6L0(20[JL]1|40[JL]2|60[JL]3|80[JL]4)", |
|---|
| 798 | "", "", "" |
|---|
| 799 | }, |
|---|
| 800 | { "Maxtor DiamondMax Plus 5120 Ultra ATA 33 family", |
|---|
| 801 | "Maxtor 9(0512D2|0680D3|0750D3|0913D4|1024D4|1360D6|1536D6|1792D7|2048D8)", |
|---|
| 802 | "", |
|---|
| 803 | "", |
|---|
| 804 | "-v 9,minutes" |
|---|
| 805 | }, |
|---|
| 806 | { "Maxtor DiamondMax Plus 6800 Ultra ATA 66 family", |
|---|
| 807 | "Maxtor 9(2732U8|2390U7|204[09]U6|1707U5|1366U4|1024U3|0845U3|0683U2)", |
|---|
| 808 | "", |
|---|
| 809 | "", |
|---|
| 810 | "-v 9,minutes" |
|---|
| 811 | }, |
|---|
| 812 | { "Maxtor DiamondMax D540X-4D", |
|---|
| 813 | "Maxtor 4D0(20H1|40H2|60H3|80H4)", |
|---|
| 814 | "", |
|---|
| 815 | "", |
|---|
| 816 | "-v 9,minutes -v 194,unknown" |
|---|
| 817 | }, |
|---|
| 818 | { "Maxtor DiamondMax 16 family", |
|---|
| 819 | "Maxtor 4(R0[68]0[JL]0|R1[26]0L0|A160J0|R120L4)", |
|---|
| 820 | "", |
|---|
| 821 | "", |
|---|
| 822 | "-v 9,minutes" |
|---|
| 823 | }, |
|---|
| 824 | { "Maxtor DiamondMax 4320 Ultra ATA family", |
|---|
| 825 | "Maxtor (91728D8|91512D7|91303D6|91080D5|90845D4|90645D3|90648D[34]|90432D2)", |
|---|
| 826 | "", |
|---|
| 827 | "", |
|---|
| 828 | "-v 9,minutes" |
|---|
| 829 | }, |
|---|
| 830 | { "Maxtor DiamondMax 17 VL family", |
|---|
| 831 | "Maxtor 9(0431U1|0641U2|0871U2|1301U3|1741U4)", |
|---|
| 832 | "", |
|---|
| 833 | "", |
|---|
| 834 | "-v 9,minutes" |
|---|
| 835 | }, |
|---|
| 836 | { "Maxtor DiamondMax 20 VL family", |
|---|
| 837 | "Maxtor (94091U8|93071U6|92561U5|92041U4|91731U4|91531U3|91361U3|91021U2|90841U2|90651U2)", |
|---|
| 838 | "", |
|---|
| 839 | "", |
|---|
| 840 | "-v 9,minutes" |
|---|
| 841 | }, |
|---|
| 842 | { "Maxtor DiamondMax VL 30 family", // U: ATA66, H: ATA100 |
|---|
| 843 | "Maxtor (33073U4|32049U3|31536U2|30768U1|33073H4|32305H3|31536H2|30768H1)", |
|---|
| 844 | "", |
|---|
| 845 | "", |
|---|
| 846 | "-v 9,minutes" |
|---|
| 847 | }, |
|---|
| 848 | { "Maxtor DiamondMax 36 family", |
|---|
| 849 | "Maxtor (93652U8|92739U6|91826U4|91369U3|90913U2|90845U2|90435U1)", |
|---|
| 850 | "", |
|---|
| 851 | "", |
|---|
| 852 | "-v 9,minutes" |
|---|
| 853 | }, |
|---|
| 854 | { "Maxtor DiamondMax 40 ATA 66 series", |
|---|
| 855 | "Maxtor 9(0684U2|1024U2|1362U3|1536U3|2049U4|2562U5|3073U6|4098U8)", |
|---|
| 856 | "", |
|---|
| 857 | "", |
|---|
| 858 | "-v 9,minutes" |
|---|
| 859 | }, |
|---|
| 860 | { "Maxtor DiamondMax Plus 40 series (Ultra ATA 66 and Ultra ATA 100)", |
|---|
| 861 | "Maxtor (54098[UH]8|53073[UH]6|52732[UH]6|52049[UH]4|51536[UH]3|51369[UH]3|51024[UH]2)", |
|---|
| 862 | "", |
|---|
| 863 | "", |
|---|
| 864 | "-v 9,minutes" |
|---|
| 865 | }, |
|---|
| 866 | { "Maxtor DiamondMax 40 VL Ultra ATA 100 series", |
|---|
| 867 | "Maxtor 3(1024H1|1535H2|2049H2|3073H3|4098H4)( B)?", |
|---|
| 868 | "", |
|---|
| 869 | "", |
|---|
| 870 | "-v 9,minutes" |
|---|
| 871 | }, |
|---|
| 872 | { "Maxtor DiamondMax Plus 45 Ulta ATA 100 family", |
|---|
| 873 | "Maxtor 5(4610H6|4098H6|3073H4|2049H3|1536H2|1369H2|1023H2)", |
|---|
| 874 | "", |
|---|
| 875 | "", |
|---|
| 876 | "-v 9,minutes" |
|---|
| 877 | }, |
|---|
| 878 | { "Maxtor DiamondMax 60 ATA 66 family", |
|---|
| 879 | "Maxtor 9(1023U2|1536U2|2049U3|2305U3|3073U4|4610U6|6147U8)", |
|---|
| 880 | "", |
|---|
| 881 | "", |
|---|
| 882 | "-v 9,minutes" |
|---|
| 883 | }, |
|---|
| 884 | { "Maxtor DiamondMax 60 ATA 100 family", |
|---|
| 885 | "Maxtor 9(1023H2|1536H2|2049H3|2305H3|3073H4|4098H6|4610H6|6147H8)", |
|---|
| 886 | "", |
|---|
| 887 | "", |
|---|
| 888 | "-v 9,minutes" |
|---|
| 889 | }, |
|---|
| 890 | { "Maxtor DiamondMax Plus 60 family", |
|---|
| 891 | "Maxtor 5T0(60H6|40H4|30H3|20H2|10H1)", |
|---|
| 892 | "", |
|---|
| 893 | "", |
|---|
| 894 | "-v 9,minutes" |
|---|
| 895 | }, |
|---|
| 896 | { "Maxtor DiamondMax 80 family", |
|---|
| 897 | "Maxtor (98196H8|96147H6)", |
|---|
| 898 | "", |
|---|
| 899 | "", |
|---|
| 900 | "-v 9,minutes" |
|---|
| 901 | }, |
|---|
| 902 | { "Maxtor DiamondMax 536DX family", |
|---|
| 903 | "Maxtor 4W(100H6|080H6|060H4|040H3|030H2)", |
|---|
| 904 | "", |
|---|
| 905 | "", |
|---|
| 906 | "-v 9,minutes" |
|---|
| 907 | }, |
|---|
| 908 | { "Maxtor DiamondMax Plus 8 family", |
|---|
| 909 | "Maxtor 6(E0[234]|K04)0L0", |
|---|
| 910 | "", |
|---|
| 911 | "", |
|---|
| 912 | "-v 9,minutes" |
|---|
| 913 | }, |
|---|
| 914 | { "Maxtor DiamondMax 10 family (ATA/133 and SATA/150)", |
|---|
| 915 | "Maxtor 6(B(30|25|20|16|12|10|08)0[MPRS]|L(080[MLP]|(100|120)[MP]|160[MP]|200[MPRS]|250[RS]|300[RS]))0", |
|---|
| 916 | "", |
|---|
| 917 | "", |
|---|
| 918 | "-v 9,minutes" |
|---|
| 919 | }, |
|---|
| 920 | { "Maxtor DiamondMax 10 family (SATA/300)", |
|---|
| 921 | "Maxtor 6V(080E|160E|200E|250F|300F|320F)0", |
|---|
| 922 | "", "", "" |
|---|
| 923 | }, |
|---|
| 924 | { "Maxtor DiamondMax Plus 9 family", |
|---|
| 925 | "Maxtor 6Y((060|080|120|160)L0|(060|080|120|160|200|250)P0|(060|080|120|160|200|250)M0)", |
|---|
| 926 | "", |
|---|
| 927 | "", |
|---|
| 928 | "-v 9,minutes" |
|---|
| 929 | }, |
|---|
| 930 | { "Maxtor DiamondMax 11 family", |
|---|
| 931 | "Maxtor 6H[45]00[FR]0", |
|---|
| 932 | "", "", "" |
|---|
| 933 | }, |
|---|
| 934 | { "Maxtor DiamondMax 17", |
|---|
| 935 | "Maxtor 6G(080L|160[PE])0", |
|---|
| 936 | "", "", "" |
|---|
| 937 | }, |
|---|
| 938 | { "Seagate Maxtor DiamondMax 20", |
|---|
| 939 | "MAXTOR STM3(40|80|160)[28]1[12]0?AS?", |
|---|
| 940 | "", "", "" |
|---|
| 941 | }, |
|---|
| 942 | { "Seagate Maxtor DiamondMax 21", // tested with MAXTOR STM3250310AS/3.AAF |
|---|
| 943 | "MAXTOR STM3(80815|160215|250310|(250|320)820|320620|500630)AS?", |
|---|
| 944 | "", "", "" |
|---|
| 945 | }, |
|---|
| 946 | { "Seagate Maxtor DiamondMax 22", // fixed firmware |
|---|
| 947 | "(MAXTOR )?STM3(500320|750330|1000340)AS?", |
|---|
| 948 | "MX1A", // http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207969 |
|---|
| 949 | "", "" |
|---|
| 950 | }, |
|---|
| 951 | { "Seagate Maxtor DiamondMax 22", // fixed firmware |
|---|
| 952 | "(MAXTOR )?STM3(160813|320614|640323|1000334)AS?", |
|---|
| 953 | "MX1B", // http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207975 |
|---|
| 954 | "", "" |
|---|
| 955 | }, |
|---|
| 956 | { "Seagate Maxtor DiamondMax 22", // buggy firmware |
|---|
| 957 | "(MAXTOR )?STM3(500320|750330|1000340)AS?", |
|---|
| 958 | "MX15", |
|---|
| 959 | "There are known problems with these drives,\n" |
|---|
| 960 | "AND THIS FIRMWARE VERSION IS AFFECTED,\n" |
|---|
| 961 | "see the following Seagate web pages:\n" |
|---|
| 962 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207931\n" |
|---|
| 963 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207969", |
|---|
| 964 | "" |
|---|
| 965 | }, |
|---|
| 966 | { "Seagate Maxtor DiamondMax 22", // unknown firmware |
|---|
| 967 | "(MAXTOR )?STM3(160813|32061[34]|500320|640323|750330|10003(34|40))AS?", |
|---|
| 968 | "", |
|---|
| 969 | "There are known problems with these drives,\n" |
|---|
| 970 | "see the following Seagate web pages:\n" |
|---|
| 971 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207931\n" |
|---|
| 972 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207969\n" |
|---|
| 973 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207975", |
|---|
| 974 | "" |
|---|
| 975 | }, |
|---|
| 976 | { "Seagate Maxtor DiamondMax 23", |
|---|
| 977 | "STM3((160|250)31|(320|500)41|(750|1000)52)8AS?", |
|---|
| 978 | "", "", "" |
|---|
| 979 | }, |
|---|
| 980 | { "Maxtor MaXLine Plus II", |
|---|
| 981 | "Maxtor 7Y250[PM]0", |
|---|
| 982 | "", |
|---|
| 983 | "", |
|---|
| 984 | "-v 9,minutes" |
|---|
| 985 | }, |
|---|
| 986 | { "Maxtor MaXLine II family", |
|---|
| 987 | "Maxtor [45]A(25|30|32)0[JN]0", |
|---|
| 988 | "", |
|---|
| 989 | "", |
|---|
| 990 | "-v 9,minutes" |
|---|
| 991 | }, |
|---|
| 992 | { "Maxtor MaXLine III family (ATA/133 and SATA/150)", |
|---|
| 993 | "Maxtor 7L(25|30)0[SR]0", |
|---|
| 994 | "", |
|---|
| 995 | "", |
|---|
| 996 | "-v 9,minutes" |
|---|
| 997 | }, |
|---|
| 998 | { "Maxtor MaXLine III family (SATA/300)", |
|---|
| 999 | "Maxtor 7V(25|30)0F0", |
|---|
| 1000 | "", "", "" |
|---|
| 1001 | }, |
|---|
| 1002 | { "Maxtor MaXLine Pro 500 family", // There is also a 7H500R0 model, but I |
|---|
| 1003 | "Maxtor 7H500F0", // haven't added it because I suspect |
|---|
| 1004 | "", // it might need vendoropts_9_minutes |
|---|
| 1005 | "", "" // and nobody has submitted a report yet |
|---|
| 1006 | }, |
|---|
| 1007 | { "", // HITACHI_DK14FA-20B |
|---|
| 1008 | "HITACHI_DK14FA-20B", |
|---|
| 1009 | "", |
|---|
| 1010 | "", |
|---|
| 1011 | "-v 9,minutes -v 193,loadunload" |
|---|
| 1012 | }, |
|---|
| 1013 | { "HITACHI Travelstar DK23XX/DK23XXB series", |
|---|
| 1014 | "HITACHI_DK23..-..B?", |
|---|
| 1015 | "", |
|---|
| 1016 | "", |
|---|
| 1017 | "-v 9,minutes -v 193,loadunload" |
|---|
| 1018 | }, |
|---|
| 1019 | { "Hitachi Endurastar J4K20/N4K20 (formerly DK23FA-20J)", |
|---|
| 1020 | "(HITACHI_DK23FA-20J|HTA422020F9AT[JN]0)", |
|---|
| 1021 | "", |
|---|
| 1022 | "", |
|---|
| 1023 | "-v 9,minutes -v 193,loadunload" |
|---|
| 1024 | }, |
|---|
| 1025 | { "Hitachi Endurastar J4K30/N4K30", |
|---|
| 1026 | "HE[JN]4230[23]0F9AT00", |
|---|
| 1027 | "", |
|---|
| 1028 | "", |
|---|
| 1029 | "-v 9,minutes -v 193,loadunload" |
|---|
| 1030 | }, |
|---|
| 1031 | { "Hitachi Travelstar C4K60 family", // 1.8" slim drive |
|---|
| 1032 | "HTC4260[23]0G5CE00|HTC4260[56]0G8CE00", |
|---|
| 1033 | "", |
|---|
| 1034 | "", |
|---|
| 1035 | "-v 9,minutes -v 193,loadunload" |
|---|
| 1036 | }, |
|---|
| 1037 | { "IBM Travelstar 4GT family", |
|---|
| 1038 | "IBM-DTCA-2(324|409)0", |
|---|
| 1039 | "", "", "" |
|---|
| 1040 | }, |
|---|
| 1041 | { "IBM Travelstar 6GN family", |
|---|
| 1042 | "IBM-DBCA-20(324|486|648)0", |
|---|
| 1043 | "", "", "" |
|---|
| 1044 | }, |
|---|
| 1045 | { "IBM Travelstar 25GS, 18GT, and 12GN family", |
|---|
| 1046 | "IBM-DARA-2(25|18|15|12|09|06)000", |
|---|
| 1047 | "", "", "" |
|---|
| 1048 | }, |
|---|
| 1049 | { "IBM Travelstar 14GS", |
|---|
| 1050 | "IBM-DCYA-214000", |
|---|
| 1051 | "", "", "" |
|---|
| 1052 | }, |
|---|
| 1053 | { "IBM Travelstar 4LP", |
|---|
| 1054 | "IBM-DTNA-2(180|216)0", |
|---|
| 1055 | "", "", "" |
|---|
| 1056 | }, |
|---|
| 1057 | { "IBM Travelstar 48GH, 30GN, and 15GN family", |
|---|
| 1058 | "(IBM-|Hitachi )?IC25(T048ATDA05|N0(30|20|15|12|10|07|06|05)ATDA04)-.", |
|---|
| 1059 | "", "", "" |
|---|
| 1060 | }, |
|---|
| 1061 | { "IBM Travelstar 32GH, 30GT, and 20GN family", |
|---|
| 1062 | "IBM-DJSA-2(32|30|20|10|05)", |
|---|
| 1063 | "", "", "" |
|---|
| 1064 | }, |
|---|
| 1065 | { "IBM Travelstar 4GN family", |
|---|
| 1066 | "IBM-DKLA-2(216|324|432)0", |
|---|
| 1067 | "", "", "" |
|---|
| 1068 | }, |
|---|
| 1069 | { "IBM/Hitachi Travelstar 60GH and 40GN family", |
|---|
| 1070 | "(IBM-|Hitachi )?IC25(T060ATC[SX]05|N0[4321]0ATC[SX]04)-.", |
|---|
| 1071 | "", "", "" |
|---|
| 1072 | }, |
|---|
| 1073 | { "IBM/Hitachi Travelstar 40GNX family", |
|---|
| 1074 | "(IBM-|Hitachi )?IC25N0[42]0ATC[SX]05-.", |
|---|
| 1075 | "", "", "" |
|---|
| 1076 | }, |
|---|
| 1077 | { "Hitachi Travelstar 80GN family", |
|---|
| 1078 | "(Hitachi )?IC25N0[23468]0ATMR04-.", |
|---|
| 1079 | "", "", "" |
|---|
| 1080 | }, |
|---|
| 1081 | { "Hitachi Travelstar 4K40", |
|---|
| 1082 | "(Hitachi )?HTS4240[234]0M9AT00", |
|---|
| 1083 | "", "", "" |
|---|
| 1084 | }, |
|---|
| 1085 | { "Hitachi Travelstar 4K120", |
|---|
| 1086 | "(Hitachi )?(HTS4212(60|80|10|12)H9AT00|HTS421260G9AT00)", |
|---|
| 1087 | "", "", "" |
|---|
| 1088 | }, |
|---|
| 1089 | { "Hitachi Travelstar 5K80", |
|---|
| 1090 | "(Hitachi )?HTS5480[8642]0M9AT00", |
|---|
| 1091 | "", "", "" |
|---|
| 1092 | }, |
|---|
| 1093 | { "Hitachi Travelstar 5K100", |
|---|
| 1094 | "(Hitachi )?HTS5410[1864]0G9(AT|SA)00", |
|---|
| 1095 | "", "", "" |
|---|
| 1096 | }, |
|---|
| 1097 | { "Hitachi Travelstar E5K100", |
|---|
| 1098 | "(Hitachi )?HTE541040G9(AT|SA)00", |
|---|
| 1099 | "", "", "" |
|---|
| 1100 | }, |
|---|
| 1101 | { "Hitachi Travelstar 5K120", |
|---|
| 1102 | "(Hitachi )?HTS5412(60|80|10|12)H9(AT|SA)00", |
|---|
| 1103 | "", "", "" |
|---|
| 1104 | }, |
|---|
| 1105 | { "Hitachi Travelstar 5K160", |
|---|
| 1106 | "(Hitachi |HITACHI )?HTS5416([468]0|1[26])J9(AT|SA)00", |
|---|
| 1107 | "", "", "" |
|---|
| 1108 | }, |
|---|
| 1109 | { "Hitachi Travelstar E5K160", |
|---|
| 1110 | "(Hitachi )?HTE5416(12|16|60|80)J9(AT|SA)00", |
|---|
| 1111 | "", "", "" |
|---|
| 1112 | }, |
|---|
| 1113 | { "Hitachi Travelstar 5K250", |
|---|
| 1114 | "(Hitachi |HITACHI )?HTS5425(80|12|16|20|25)K9(A3|SA)00", |
|---|
| 1115 | "", "", "" |
|---|
| 1116 | }, |
|---|
| 1117 | { "Hitachi Travelstar 5K320", |
|---|
| 1118 | "(Hitachi |HITACHI )?HT(S|E)5432(80|12|16|25|32)L9(A3(00)?|SA01)", |
|---|
| 1119 | "", "", "" |
|---|
| 1120 | }, |
|---|
| 1121 | { "Hitachi Travelstar 5K500.B", |
|---|
| 1122 | "(Hitachi )?HT[ES]5450(12|16|25|32|40|50)B9A30[01]", |
|---|
| 1123 | "", "", "" |
|---|
| 1124 | }, |
|---|
| 1125 | { "Hitachi Travelstar 7K60", |
|---|
| 1126 | "(Hitachi )?HTS726060M9AT00", |
|---|
| 1127 | "", "", "" |
|---|
| 1128 | }, |
|---|
| 1129 | { "Hitachi Travelstar E7K60", |
|---|
| 1130 | "(Hitachi )?HTE7260[46]0M9AT00", |
|---|
| 1131 | "", "", "" |
|---|
| 1132 | }, |
|---|
| 1133 | { "Hitachi Travelstar 7K100", |
|---|
| 1134 | "(Hitachi )?HTS7210[168]0G9(AT|SA)00", |
|---|
| 1135 | "", "", "" |
|---|
| 1136 | }, |
|---|
| 1137 | { "Hitachi Travelstar E7K100", |
|---|
| 1138 | "(Hitachi )?HTE7210[168]0G9(AT|SA)00", |
|---|
| 1139 | "", "", "" |
|---|
| 1140 | }, |
|---|
| 1141 | { "Hitachi Travelstar 7K200", |
|---|
| 1142 | "(Hitachi )?HTS7220(80|10|12|16|20)K9(A3|SA)00", |
|---|
| 1143 | "", "", "" |
|---|
| 1144 | }, |
|---|
| 1145 | { "Hitachi Travelstar 7K320", // tested with |
|---|
| 1146 | // HTS723225L9A360/FCDOC30F, HTS723216L9A362/FC2OC39F |
|---|
| 1147 | "(Hitachi )?HT[ES]7232(80|12|16|25|32)L9(A300|A36[02]|SA61)", |
|---|
| 1148 | "", "", "" |
|---|
| 1149 | }, |
|---|
| 1150 | { "Hitachi Travelstar 7K500", |
|---|
| 1151 | "(Hitachi )?HT[ES]7250(12|16|25|32|50)A9A36[45]", |
|---|
| 1152 | "", "", "" |
|---|
| 1153 | }, |
|---|
| 1154 | { "IBM Deskstar 14GXP and 16GP series", |
|---|
| 1155 | "IBM-DTTA-3(7101|7129|7144|5032|5043|5064|5084|5101|5129|5168)0", |
|---|
| 1156 | "", "", "" |
|---|
| 1157 | }, |
|---|
| 1158 | { "IBM Deskstar 25GP and 22GXP family", |
|---|
| 1159 | "IBM-DJNA-3(5(101|152|203|250)|7(091|135|180|220))0", |
|---|
| 1160 | "", "", "" |
|---|
| 1161 | }, |
|---|
| 1162 | { "IBM Deskstar 37GP and 34GXP family", |
|---|
| 1163 | "IBM-DPTA-3(5(375|300|225|150)|7(342|273|205|136))0", |
|---|
| 1164 | "", "", "" |
|---|
| 1165 | }, |
|---|
| 1166 | { "IBM/Hitachi Deskstar 120GXP family", |
|---|
| 1167 | "(IBM-)?IC35L((020|040|060|080|120)AVVA|0[24]0AVVN)07-[01]", |
|---|
| 1168 | "", "", "" |
|---|
| 1169 | }, |
|---|
| 1170 | { "IBM/Hitachi Deskstar GXP-180 family", |
|---|
| 1171 | "(IBM-)?IC35L(030|060|090|120|180)AVV207-[01]", |
|---|
| 1172 | "", "", "" |
|---|
| 1173 | }, |
|---|
| 1174 | { "Hitachi Deskstar 5K3000", |
|---|
| 1175 | "(Hitachi )?HDS5C30(15|20|30)ALA63[02].*", |
|---|
| 1176 | "", "", "" |
|---|
| 1177 | }, |
|---|
| 1178 | { "Hitachi Deskstar 7K80", |
|---|
| 1179 | "(Hitachi )?HDS7280([48]0PLAT20|(40)?PLA320|80PLA380).*", |
|---|
| 1180 | "", "", "" |
|---|
| 1181 | }, |
|---|
| 1182 | { "Hitachi Deskstar 7K160", |
|---|
| 1183 | "(Hitachi )?HDS7216(80|16)PLA[3T]80.*", |
|---|
| 1184 | "", "", "" |
|---|
| 1185 | }, |
|---|
| 1186 | { "Hitachi Deskstar 7K250", |
|---|
| 1187 | "(Hitachi )?HDS7225((40|80|12|16)VLAT20|(12|16|25)VLAT80|(80|12|16|25)VLSA80)", |
|---|
| 1188 | "", "", "" |
|---|
| 1189 | }, |
|---|
| 1190 | { "Hitachi Deskstar 7K250 (SUN branded)", |
|---|
| 1191 | "HITACHI HDS7225SBSUN250G.*", |
|---|
| 1192 | "", "", "" |
|---|
| 1193 | }, |
|---|
| 1194 | { "Hitachi Deskstar T7K250", |
|---|
| 1195 | "(Hitachi )?HDT7225((25|20|16)DLA(T80|380))", |
|---|
| 1196 | "", "", "" |
|---|
| 1197 | }, |
|---|
| 1198 | { "Hitachi Deskstar 7K400", |
|---|
| 1199 | "(Hitachi )?HDS724040KL(AT|SA)80", |
|---|
| 1200 | "", "", "" |
|---|
| 1201 | }, |
|---|
| 1202 | { "Hitachi Deskstar 7K500", |
|---|
| 1203 | "(Hitachi )?HDS725050KLA(360|T80)", |
|---|
| 1204 | "", "", "" |
|---|
| 1205 | }, |
|---|
| 1206 | { "Hitachi Deskstar P7K500", |
|---|
| 1207 | "(Hitachi )?HDP7250(16|25|32|40|50)GLA(36|38|T8)0", |
|---|
| 1208 | "", "", "" |
|---|
| 1209 | }, |
|---|
| 1210 | { "Hitachi Deskstar T7K500", |
|---|
| 1211 | "(Hitachi )?HDT7250(25|32|40|50)VLA(360|380|T80)", |
|---|
| 1212 | "", "", "" |
|---|
| 1213 | }, |
|---|
| 1214 | { "Hitachi Deskstar 7K1000", |
|---|
| 1215 | "(Hitachi )?HDS7210(50|75|10)KLA330", |
|---|
| 1216 | "", "", "" |
|---|
| 1217 | }, |
|---|
| 1218 | { "Hitachi Deskstar 7K1000.B", |
|---|
| 1219 | "(Hitachi )?HDT7210((16|25)SLA380|(32|50|64|75|10)SLA360)", |
|---|
| 1220 | "", "", "" |
|---|
| 1221 | }, |
|---|
| 1222 | { "Hitachi Deskstar 7K1000.C", |
|---|
| 1223 | "(Hitachi )?HDS7210((16|25)CLA382|(32|50)CLA362|(64|75|10)CLA332)", |
|---|
| 1224 | "", "", "" |
|---|
| 1225 | }, |
|---|
| 1226 | { "Hitachi Deskstar 7K2000", |
|---|
| 1227 | "Hitachi HDS722020ALA330", |
|---|
| 1228 | "", "", "" |
|---|
| 1229 | }, |
|---|
| 1230 | { "Hitachi Deskstar 7K3000", // tested with HDS723030ALA640/MKAOA3B0 |
|---|
| 1231 | "Hitachi HDS7230((15|20)BLA642|30ALA640)", |
|---|
| 1232 | "", "", "" |
|---|
| 1233 | }, |
|---|
| 1234 | { "Hitachi Ultrastar 7K1000", |
|---|
| 1235 | "(Hitachi )?HUA7210(50|75|10)KLA330", |
|---|
| 1236 | "", "", "" |
|---|
| 1237 | }, |
|---|
| 1238 | { "Hitachi Ultrastar A7K2000", |
|---|
| 1239 | "(Hitachi )?HUA7220((50|10)C|20A)LA33[01]", |
|---|
| 1240 | "", "", "" |
|---|
| 1241 | }, |
|---|
| 1242 | { "Toshiba 2.5\" HDD series (10-20 GB)", |
|---|
| 1243 | "TOSHIBA MK(101[67]GAP|15[67]GAP|20(1[678]GAP|(18|23)GAS))", |
|---|
| 1244 | "", "", "" |
|---|
| 1245 | }, |
|---|
| 1246 | { "Toshiba 2.5\" HDD series (30-60 GB)", |
|---|
| 1247 | "TOSHIBA MK((6034|4032)GSX|(6034|4032)GAX|(6026|4026|4019|3019)GAXB?|(6025|6021|4025|4021|4018|3025|3021|3018)GAS|(4036|3029)GACE?|(4018|3017)GAP)", |
|---|
| 1248 | "", "", "" |
|---|
| 1249 | }, |
|---|
| 1250 | { "Toshiba 2.5\" HDD series (80 GB and above)", |
|---|
| 1251 | "TOSHIBA MK(80(25GAS|26GAX|32GAX|32GSX)|10(31GAS|32GAX)|12(33GAS|34G[AS]X)|2035GSS)", |
|---|
| 1252 | "", "", "" |
|---|
| 1253 | }, |
|---|
| 1254 | { "Toshiba 2.5\" HDD MK..52GSX series", |
|---|
| 1255 | "TOSHIBA MK(80|12|16|25|32)52GSX", |
|---|
| 1256 | "", "", "" |
|---|
| 1257 | }, |
|---|
| 1258 | { "Toshiba 2.5\" HDD MK..59GSXP series", // Adv. Format |
|---|
| 1259 | "TOSHIBA MK(32|50|64|75)59GSXP?", |
|---|
| 1260 | "", "", "" |
|---|
| 1261 | }, |
|---|
| 1262 | { "Toshiba 2.5\" HDD MK..59GSM series", // Adv. Format |
|---|
| 1263 | "TOSHIBA MK(75|10)59GSM", |
|---|
| 1264 | "", "", "" |
|---|
| 1265 | }, |
|---|
| 1266 | { "Toshiba 2.5\" HDD MK..65GSX series", // tested with TOSHIBA MK5065GSX/GJ003A |
|---|
| 1267 | "TOSHIBA MK(16|25|32|50|64)65GSX", |
|---|
| 1268 | "", "", "" |
|---|
| 1269 | }, |
|---|
| 1270 | { "Toshiba 1.8\" HDD series", |
|---|
| 1271 | "TOSHIBA MK[23468]00[4-9]GA[HL]", |
|---|
| 1272 | "", "", "" |
|---|
| 1273 | }, |
|---|
| 1274 | { "", // TOSHIBA MK6022GAX |
|---|
| 1275 | "TOSHIBA MK6022GAX", |
|---|
| 1276 | "", "", "" |
|---|
| 1277 | }, |
|---|
| 1278 | { "", // TOSHIBA MK6409MAV |
|---|
| 1279 | "TOSHIBA MK6409MAV", |
|---|
| 1280 | "", "", "" |
|---|
| 1281 | }, |
|---|
| 1282 | { "Toshiba MKx019GAXB (SUN branded)", |
|---|
| 1283 | "TOS MK[34]019GAXB SUN[34]0G", |
|---|
| 1284 | "", "", "" |
|---|
| 1285 | }, |
|---|
| 1286 | { "Seagate Momentus family", |
|---|
| 1287 | "ST9(20|28|40|48)11A", |
|---|
| 1288 | "", "", "" |
|---|
| 1289 | }, |
|---|
| 1290 | { "Seagate Momentus 42 family", |
|---|
| 1291 | "ST9(2014|3015|4019)A", |
|---|
| 1292 | "", "", "" |
|---|
| 1293 | }, |
|---|
| 1294 | { "Seagate Momentus 4200.2 series", |
|---|
| 1295 | "ST9(100822|808210|60821|50212|402113|30219)A", |
|---|
| 1296 | "", "", "" |
|---|
| 1297 | }, |
|---|
| 1298 | { "Seagate Momentus 5400.2 series", |
|---|
| 1299 | "ST9(808211|60822|408114|308110|120821|10082[34]|8823|6812|4813|3811)AS?", |
|---|
| 1300 | "", "", "" |
|---|
| 1301 | }, |
|---|
| 1302 | { "Seagate Momentus 5400.3 series", |
|---|
| 1303 | "ST9(4081[45]|6081[35]|8081[15]|100828|120822|160821)AS?", |
|---|
| 1304 | "", "", "" |
|---|
| 1305 | }, |
|---|
| 1306 | { "Seagate Momentus 5400.3 ED series", |
|---|
| 1307 | "ST9(4081[45]|6081[35]|8081[15]|100828|120822|160821)AB", |
|---|
| 1308 | "", "", "" |
|---|
| 1309 | }, |
|---|
| 1310 | { "Seagate Momentus 5400.4 series", |
|---|
| 1311 | "ST9(120817|(160|200|250)827)AS", |
|---|
| 1312 | "", "", "" |
|---|
| 1313 | }, |
|---|
| 1314 | { "Seagate Momentus 5400.5 series", |
|---|
| 1315 | "ST9((80|120|160)310|(250|320)320)AS", |
|---|
| 1316 | "", "", "" |
|---|
| 1317 | }, |
|---|
| 1318 | { "Seagate Momentus 5400.6 series", |
|---|
| 1319 | "ST9(80313|160(301|314)|(12|25)0315|250317|(320|500)325|500327|640320)ASG?", |
|---|
| 1320 | "", "", "" |
|---|
| 1321 | }, |
|---|
| 1322 | { "Seagate Momentus 5400 PSD series", // Hybrid drives |
|---|
| 1323 | "ST9(808212|(120|160)8220)AS", |
|---|
| 1324 | "", "", "" |
|---|
| 1325 | }, |
|---|
| 1326 | { "Seagate Momentus 7200.1 series", |
|---|
| 1327 | "ST9(10021|80825|6023|4015)AS?", |
|---|
| 1328 | "", "", "" |
|---|
| 1329 | }, |
|---|
| 1330 | { "Seagate Momentus 7200.2 series", |
|---|
| 1331 | "ST9(80813|100821|120823|160823|200420)ASG?", |
|---|
| 1332 | "", "", "" |
|---|
| 1333 | }, |
|---|
| 1334 | { "Seagate Momentus 7200.3 series", |
|---|
| 1335 | "ST9((80|120|160)411|(250|320)421)ASG?", |
|---|
| 1336 | "", "", "" |
|---|
| 1337 | }, |
|---|
| 1338 | { "Seagate Momentus 7200.4 series", |
|---|
| 1339 | "ST9(160412|250410|320423|500420)ASG?", |
|---|
| 1340 | "", "", "" |
|---|
| 1341 | }, |
|---|
| 1342 | { "Seagate Momentus 7200 FDE.2 series", |
|---|
| 1343 | "ST9((160413|25041[12]|320426|50042[12])AS|(16041[489]|2504[16]4|32042[67]|500426)ASG)", |
|---|
| 1344 | "", "", "" |
|---|
| 1345 | }, |
|---|
| 1346 | { "Seagate Momentus XT series", // tested with ST95005620AS/SD22 |
|---|
| 1347 | "ST9(2505610|3205620|5005620)AS", |
|---|
| 1348 | "", "", "" |
|---|
| 1349 | }, |
|---|
| 1350 | { "Seagate Medalist 1010, 1720, 1721, 2120, 3230 and 4340", // ATA2, with -t permissive |
|---|
| 1351 | "ST3(1010|1720|1721|2120|3230|4340)A", |
|---|
| 1352 | "", "", "" |
|---|
| 1353 | }, |
|---|
| 1354 | { "Seagate Medalist 2110, 3221, 4321, 6531, and 8641", |
|---|
| 1355 | "ST3(2110|3221|4321|6531|8641)A", |
|---|
| 1356 | "", "", "" |
|---|
| 1357 | }, |
|---|
| 1358 | { "Seagate U Series X family", |
|---|
| 1359 | "ST3(10014A(CE)?|20014A)", |
|---|
| 1360 | "", "", "" |
|---|
| 1361 | }, |
|---|
| 1362 | { "Seagate U8 family", |
|---|
| 1363 | "ST3(4313|6811|8410|13021|17221)A", |
|---|
| 1364 | "", "", "" |
|---|
| 1365 | }, |
|---|
| 1366 | { "Seagate U7 family", |
|---|
| 1367 | "ST3(30012|40012|60012|80022|120020)A", |
|---|
| 1368 | "", "", "" |
|---|
| 1369 | }, |
|---|
| 1370 | { "Seagate U Series 6 family", |
|---|
| 1371 | "ST3(8002|6002|4081|3061|2041)0A", |
|---|
| 1372 | "", "", "" |
|---|
| 1373 | }, |
|---|
| 1374 | { "Seagate U Series 5 family", |
|---|
| 1375 | "ST3(40823|30621|20413|15311|10211)A", |
|---|
| 1376 | "", "", "" |
|---|
| 1377 | }, |
|---|
| 1378 | { "Seagate U4 family", |
|---|
| 1379 | "ST3(2112|4311|6421|8421)A", |
|---|
| 1380 | "", "", "" |
|---|
| 1381 | }, |
|---|
| 1382 | { "Seagate U8 family", |
|---|
| 1383 | "ST3(8410|4313|17221|13021)A", |
|---|
| 1384 | "", "", "" |
|---|
| 1385 | }, |
|---|
| 1386 | { "Seagate U10 family", |
|---|
| 1387 | "ST3(20423|15323|10212)A", |
|---|
| 1388 | "", "", "" |
|---|
| 1389 | }, |
|---|
| 1390 | { "Seagate Barracuda ATA family", |
|---|
| 1391 | "ST3(2804|2724|2043|1362|1022|681)0A", |
|---|
| 1392 | "", "", "" |
|---|
| 1393 | }, |
|---|
| 1394 | { "Seagate Barracuda ATA II family", |
|---|
| 1395 | "ST3(3063|2042|1532|1021)0A", |
|---|
| 1396 | "", "", "" |
|---|
| 1397 | }, |
|---|
| 1398 | { "Seagate Barracuda ATA III family", |
|---|
| 1399 | "ST3(40824|30620|20414|15310|10215)A", |
|---|
| 1400 | "", "", "" |
|---|
| 1401 | }, |
|---|
| 1402 | { "Seagate Barracuda ATA IV family", |
|---|
| 1403 | "ST3(20011|30011|40016|60021|80021)A", |
|---|
| 1404 | "", "", "" |
|---|
| 1405 | }, |
|---|
| 1406 | { "Seagate Barracuda ATA V family", |
|---|
| 1407 | "ST3(12002(3A|4A|9A|3AS)|800(23A|15A|23AS)|60(015A|210A)|40017A)", |
|---|
| 1408 | "", "", "" |
|---|
| 1409 | }, |
|---|
| 1410 | { "Seagate Barracuda 5400.1", |
|---|
| 1411 | "ST340015A", |
|---|
| 1412 | "", "", "" |
|---|
| 1413 | }, |
|---|
| 1414 | { "Seagate Barracuda 7200.7 and 7200.7 Plus family", |
|---|
| 1415 | "ST3(200021A|200822AS?|16002[13]AS?|12002[26]AS?|1[26]082[78]AS|8001[13]AS?|8081[79]AS|60014A|40111AS|40014AS?)", |
|---|
| 1416 | "", "", "" |
|---|
| 1417 | }, |
|---|
| 1418 | { "Seagate Barracuda 7200.8 family", |
|---|
| 1419 | "ST3(400[68]32|300[68]31|250[68]23|200826)AS?", |
|---|
| 1420 | "", "", "" |
|---|
| 1421 | }, |
|---|
| 1422 | { "Seagate Barracuda 7200.9 family", |
|---|
| 1423 | "ST3(402111?|80[28]110?|120[28]1[0134]|160[28]1[012]|200827|250[68]24|300[68]22|(320|400)[68]33|500[68](32|41))AS?.*", |
|---|
| 1424 | "", "", "" |
|---|
| 1425 | }, |
|---|
| 1426 | { "Seagate Barracuda 7200.10 family", |
|---|
| 1427 | "ST3((80|160)[28]15|200820|250[34]10|(250|300|320|400)[68]20|360320|500[68]30|750[68]40)AS?", |
|---|
| 1428 | "", "", "" |
|---|
| 1429 | }, |
|---|
| 1430 | { "Seagate Barracuda 7200.11 family", // unaffected firmware |
|---|
| 1431 | "ST3(160813|320[68]13|500[368]20|640[36]23|640[35]30|750[36]30|1000(333|[36]40)|1500341)AS?", |
|---|
| 1432 | "CC.?.?", // http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207957 |
|---|
| 1433 | "", "" |
|---|
| 1434 | }, |
|---|
| 1435 | { "Seagate Barracuda 7200.11 family", // fixed firmware |
|---|
| 1436 | "ST3(500[368]20|750[36]30|1000340)AS?", |
|---|
| 1437 | "SD1A", // http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207951 |
|---|
| 1438 | "", "" |
|---|
| 1439 | }, |
|---|
| 1440 | { "Seagate Barracuda 7200.11 family", // fixed firmware |
|---|
| 1441 | "ST3(160813|320[68]13|640[36]23|1000333|1500341)AS?", |
|---|
| 1442 | "SD[12]B", // http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207957 |
|---|
| 1443 | "", "" |
|---|
| 1444 | }, |
|---|
| 1445 | { "Seagate Barracuda 7200.11 family", // buggy firmware |
|---|
| 1446 | "ST3(500[368]20|640[35]30|750[36]30|1000340)AS?", |
|---|
| 1447 | "(AD14|SD1[5-9]|SD81)", |
|---|
| 1448 | "There are known problems with these drives,\n" |
|---|
| 1449 | "AND THIS FIRMWARE VERSION IS AFFECTED,\n" |
|---|
| 1450 | "see the following Seagate web pages:\n" |
|---|
| 1451 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207931\n" |
|---|
| 1452 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207951", |
|---|
| 1453 | "" |
|---|
| 1454 | }, |
|---|
| 1455 | { "Seagate Barracuda 7200.11 family", // unknown firmware |
|---|
| 1456 | "ST3(160813|320[68]13|500[368]20|640[36]23|640[35]30|750[36]30|1000(333|[36]40)|1500341)AS?", |
|---|
| 1457 | "", |
|---|
| 1458 | "There are known problems with these drives,\n" |
|---|
| 1459 | "see the following Seagate web pages:\n" |
|---|
| 1460 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207931\n" |
|---|
| 1461 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207951\n" |
|---|
| 1462 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207957", |
|---|
| 1463 | "" |
|---|
| 1464 | }, |
|---|
| 1465 | { "Seagate Barracuda 7200.12 family", |
|---|
| 1466 | "ST3(160318|25031[18]|320418|50041[08]|750(518|52[38])|100052[38])AS", |
|---|
| 1467 | "", "", "" |
|---|
| 1468 | }, |
|---|
| 1469 | { "Seagate Barracuda ES", |
|---|
| 1470 | "ST3(250[68]2|32062|40062|50063|75064)0NS", |
|---|
| 1471 | "", "", "" |
|---|
| 1472 | }, |
|---|
| 1473 | { "Seagate Barracuda ES.2", // fixed firmware |
|---|
| 1474 | "ST3(25031|50032|75033|100034)0NS", |
|---|
| 1475 | "SN[01]6", // http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207963 |
|---|
| 1476 | "", "" |
|---|
| 1477 | }, |
|---|
| 1478 | { "Seagate Barracuda ES.2", // unknown firmware |
|---|
| 1479 | "ST3(25031|50032|75033|100034)0NS", |
|---|
| 1480 | "", |
|---|
| 1481 | "There are known problems with these drives,\n" |
|---|
| 1482 | "see the following Seagate web pages:\n" |
|---|
| 1483 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207931\n" |
|---|
| 1484 | "http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207963", |
|---|
| 1485 | "" |
|---|
| 1486 | }, |
|---|
| 1487 | { "Seagate Barracuda LP", |
|---|
| 1488 | "ST3(500412|1000520|1500541|2000542)AS", |
|---|
| 1489 | "", "", "" |
|---|
| 1490 | }, |
|---|
| 1491 | { "Seagate Barracuda Green", // Adv. Format |
|---|
| 1492 | "ST(15|20)00DL003-.*", |
|---|
| 1493 | "", "", "" |
|---|
| 1494 | }, |
|---|
| 1495 | { "Seagate Barracuda XT", |
|---|
| 1496 | "ST(32000641|33000651)AS", |
|---|
| 1497 | "", "", "" |
|---|
| 1498 | }, |
|---|
| 1499 | { "Seagate Constellation (SATA)", // tested with ST9500530NS/SN03 |
|---|
| 1500 | "ST9(160511|500530)NS", |
|---|
| 1501 | "", "", "" |
|---|
| 1502 | }, |
|---|
| 1503 | { "Seagate Constellation ES (SATA)", // tested with ST31000524NS/SN11 |
|---|
| 1504 | "ST3(50051|100052|200064)4NS", |
|---|
| 1505 | "", "", "" |
|---|
| 1506 | }, |
|---|
| 1507 | { "Seagate Pipeline HD 5900.1 family", |
|---|
| 1508 | "ST3(160310|320[34]10|500(321|422))CS", |
|---|
| 1509 | "", "", "" |
|---|
| 1510 | }, |
|---|
| 1511 | { "Seagate Pipeline HD 5900.2 family", // tested with ST31000322CS/SC13 |
|---|
| 1512 | "ST3(160316|250[34]12|320(311|413)|500(312|414)|1000(322|424))CS", |
|---|
| 1513 | "", "", "" |
|---|
| 1514 | }, |
|---|
| 1515 | { "Seagate Medalist 17240, 13030, 10231, 8420, and 4310", |
|---|
| 1516 | "ST3(17240|13030|10231|8420|4310)A", |
|---|
| 1517 | "", "", "" |
|---|
| 1518 | }, |
|---|
| 1519 | { "Seagate Medalist 17242, 13032, 10232, 8422, and 4312", |
|---|
| 1520 | "ST3(1724|1303|1023|842|431)2A", |
|---|
| 1521 | "", "", "" |
|---|
| 1522 | }, |
|---|
| 1523 | { "Seagate NL35 family", |
|---|
| 1524 | "ST3(250623|250823|400632|400832|250824|250624|400633|400833|500641|500841)NS", |
|---|
| 1525 | "", "", "" |
|---|
| 1526 | }, |
|---|
| 1527 | { "Seagate SV35.2 Series", |
|---|
| 1528 | "ST3(160815|250820|320620|500630|750640)(A|S)V", |
|---|
| 1529 | "", "", "" |
|---|
| 1530 | }, |
|---|
| 1531 | { "Seagate DB35.3 Series", |
|---|
| 1532 | "ST3(750640SCE|((80|160)215|(250|320|400)820|500830|750840)(A|S)CE)", |
|---|
| 1533 | "", "", "" |
|---|
| 1534 | }, |
|---|
| 1535 | { "Western Digital Protege", |
|---|
| 1536 | /* Western Digital drives with this comment all appear to use Attribute 9 in |
|---|
| 1537 | * a non-standard manner. These entries may need to be updated when it |
|---|
| 1538 | * is understood exactly how Attribute 9 should be interpreted. |
|---|
| 1539 | * UPDATE: this is probably explained by the WD firmware bug described in the |
|---|
| 1540 | * smartmontools FAQ */ |
|---|
| 1541 | "WDC WD([2468]00E|1[26]00A)B-.*", |
|---|
| 1542 | "", "", "" |
|---|
| 1543 | }, |
|---|
| 1544 | { "Western Digital Caviar family", |
|---|
| 1545 | /* Western Digital drives with this comment all appear to use Attribute 9 in |
|---|
| 1546 | * a non-standard manner. These entries may need to be updated when it |
|---|
| 1547 | * is understood exactly how Attribute 9 should be interpreted. |
|---|
| 1548 | * UPDATE: this is probably explained by the WD firmware bug described in the |
|---|
| 1549 | * smartmontools FAQ */ |
|---|
| 1550 | "WDC WD(2|3|4|6|8|10|12|16|18|20|25)00BB-.*", |
|---|
| 1551 | "", "", "" |
|---|
| 1552 | }, |
|---|
| 1553 | { "Western Digital Caviar WDxxxAB series", |
|---|
| 1554 | /* Western Digital drives with this comment all appear to use Attribute 9 in |
|---|
| 1555 | * a non-standard manner. These entries may need to be updated when it |
|---|
| 1556 | * is understood exactly how Attribute 9 should be interpreted. |
|---|
| 1557 | * UPDATE: this is probably explained by the WD firmware bug described in the |
|---|
| 1558 | * smartmontools FAQ */ |
|---|
| 1559 | "WDC WD(3|4|6|8|25)00AB-.*", |
|---|
| 1560 | "", "", "" |
|---|
| 1561 | }, |
|---|
| 1562 | { "Western Digital Caviar WDxxxAA series", |
|---|
| 1563 | /* Western Digital drives with this comment all appear to use Attribute 9 in |
|---|
| 1564 | * a non-standard manner. These entries may need to be updated when it |
|---|
| 1565 | * is understood exactly how Attribute 9 should be interpreted. |
|---|
| 1566 | * UPDATE: this is probably explained by the WD firmware bug described in the |
|---|
| 1567 | * smartmontools FAQ */ |
|---|
| 1568 | "WDC WD...?AA(-.*)?", |
|---|
| 1569 | "", "", "" |
|---|
| 1570 | }, |
|---|
| 1571 | { "Western Digital Caviar WDxxxBA series", |
|---|
| 1572 | /* Western Digital drives with this comment all appear to use Attribute 9 in |
|---|
| 1573 | * a non-standard manner. These entries may need to be updated when it |
|---|
| 1574 | * is understood exactly how Attribute 9 should be interpreted. |
|---|
| 1575 | * UPDATE: this is probably explained by the WD firmware bug described in the |
|---|
| 1576 | * smartmontools FAQ */ |
|---|
| 1577 | "WDC WD...BA", |
|---|
| 1578 | "", "", "" |
|---|
| 1579 | }, |
|---|
| 1580 | { "Western Digital Caviar AC series", // add only 5400rpm/7200rpm (ata33 and faster) |
|---|
| 1581 | "WDC AC((116|121|125|225|132|232)|([1-4][4-9][0-9])|([1-4][0-9][0-9][0-9]))00[A-Z]?.*", |
|---|
| 1582 | "", "", "" |
|---|
| 1583 | }, |
|---|
| 1584 | { "Western Digital Caviar SE family", |
|---|
| 1585 | /* Western Digital drives with this comment all appear to use Attribute 9 in |
|---|
| 1586 | * a non-standard manner. These entries may need to be updated when it |
|---|
| 1587 | * is understood exactly how Attribute 9 should be interpreted. |
|---|
| 1588 | * UPDATE: this is probably explained by the WD firmware bug described in the |
|---|
| 1589 | * smartmontools FAQ |
|---|
| 1590 | * UPDATE 2: this does not apply to more recent models, at least WD3200AAJB */ |
|---|
| 1591 | "WDC WD(4|6|8|10|12|16|18|20|25|30|32|40|50)00(JB|PB)-.*", |
|---|
| 1592 | "", "", "" |
|---|
| 1593 | }, |
|---|
| 1594 | { "Western Digital Caviar Blue EIDE family", // WD Caviar SE EIDE family |
|---|
| 1595 | /* not completely accurate: at least also WD800JB, WD(4|8|20|25)00BB sold as Caviar Blue */ |
|---|
| 1596 | "WDC WD(16|25|32|40|50)00AAJB-.*", |
|---|
| 1597 | "", "", "" |
|---|
| 1598 | }, |
|---|
| 1599 | { "Western Digital Caviar Blue EIDE family", // WD Caviar SE16 EIDE family |
|---|
| 1600 | "WDC WD(25|32|40|50)00AAKB-.*", |
|---|
| 1601 | "", "", "" |
|---|
| 1602 | }, |
|---|
| 1603 | { "Western Digital RE EIDE family", |
|---|
| 1604 | "WDC WD(12|16|25|32)00SB-.*", |
|---|
| 1605 | "", "", "" |
|---|
| 1606 | }, |
|---|
| 1607 | { "Western Digital Caviar Serial ATA family", |
|---|
| 1608 | "WDC WD(4|8|20|32)00BD-.*", |
|---|
| 1609 | "", "", "" |
|---|
| 1610 | }, |
|---|
| 1611 | { "Western Digital Caviar SE Serial ATA family", |
|---|
| 1612 | "WDC WD(4|8|12|16|20|25|32|40)00(JD|KD|PD)-.*", |
|---|
| 1613 | "", "", "" |
|---|
| 1614 | }, |
|---|
| 1615 | { "Western Digital Caviar SE Serial ATA family", |
|---|
| 1616 | "WDC WD(8|12|16|20|25|30|32|40|50)00JS-.*", |
|---|
| 1617 | "", "", "" |
|---|
| 1618 | }, |
|---|
| 1619 | { "Western Digital Caviar SE16 Serial ATA family", |
|---|
| 1620 | "WDC WD(16|20|25|32|40|50|75)00KS-.*", |
|---|
| 1621 | "", "", "" |
|---|
| 1622 | }, |
|---|
| 1623 | { "Western Digital Caviar Blue Serial ATA family", // WD Caviar SE Serial ATA family |
|---|
| 1624 | /* not completely accurate: at least also WD800BD, (4|8)00JD sold as Caviar Blue */ |
|---|
| 1625 | "WDC WD((8|12|16|25|32)00AABS|(8|12|16|25|32|40|50)00AAJS)-.*", |
|---|
| 1626 | "", "", "" |
|---|
| 1627 | }, |
|---|
| 1628 | { "Western Digital Caviar Blue Serial ATA family", // WD Caviar SE16 Serial ATA family |
|---|
| 1629 | "WDC WD((16|20|25|32|40|50|64|75)00AAKS|10EALS)-.*", |
|---|
| 1630 | "", "", "" |
|---|
| 1631 | }, |
|---|
| 1632 | { "Western Digital Caviar Blue Serial ATA family", // SATA 3.0 variants |
|---|
| 1633 | "WDC WD((25|32|50)00AAKX|7500AALX|10EALX)-.*", |
|---|
| 1634 | "", "", "" |
|---|
| 1635 | }, |
|---|
| 1636 | { "Western Digital RE Serial ATA family", |
|---|
| 1637 | "WDC WD(12|16|25|32)00(SD|YD|YS)-.*", |
|---|
| 1638 | "", "", "" |
|---|
| 1639 | }, |
|---|
| 1640 | { "Western Digital RE2 Serial ATA family", |
|---|
| 1641 | "WDC WD((40|50|75)00(YR|YS|AYYS)|(16|32|40|50)0[01]ABYS)-.*", |
|---|
| 1642 | "", "", "" |
|---|
| 1643 | }, |
|---|
| 1644 | { "Western Digital RE2-GP family", |
|---|
| 1645 | "WDC WD(5000AB|7500AY|1000FY)PS-.*", |
|---|
| 1646 | "", "", "" |
|---|
| 1647 | }, |
|---|
| 1648 | { "Western Digital RE3 Serial ATA family", |
|---|
| 1649 | "WDC WD((25|32|50)02A|(75|10)02F)BYS-.*", |
|---|
| 1650 | "", "", "" |
|---|
| 1651 | }, |
|---|
| 1652 | { "Western Digital RE4 Serial ATA family", |
|---|
| 1653 | "WDC WD((((25|50)03A|1003F)BYX)|((15|20)03FYYS))-.*", |
|---|
| 1654 | "", "", "" |
|---|
| 1655 | }, |
|---|
| 1656 | { "Western Digital Caviar Green family", |
|---|
| 1657 | "WDC WD((50|64|75)00AA(C|V)S|(50|64|75)00AADS|10EA(C|V)S|(10|15|20)EADS)-.*", |
|---|
| 1658 | "", "", "" |
|---|
| 1659 | }, |
|---|
| 1660 | { "Western Digital Caviar Green (Adv. Format) family", |
|---|
| 1661 | "WDC WD(((64|75|80)00AA|(10|15|20)EA|(25|30)EZ)R|20EAC)S-.*", |
|---|
| 1662 | "", "", "" |
|---|
| 1663 | }, |
|---|
| 1664 | { "Western Digital Caviar Black family", |
|---|
| 1665 | "WDC WD((500|640|750)1AAL|1001FA[EL]|2001FAS)S-.*", |
|---|
| 1666 | "", "", "" |
|---|
| 1667 | }, |
|---|
| 1668 | { "Western Digital Caviar Black family", // SATA 3.0 variants |
|---|
| 1669 | "WDC WD(5002AAL|(64|75)02AAE|(10|15|20)02FAE)X-.*", |
|---|
| 1670 | "", "", "" |
|---|
| 1671 | }, |
|---|
| 1672 | { "Western Digital AV ATA family", // tested with WDC WD3200AVJB-63J5A0/01.03E01 |
|---|
| 1673 | "WDC WD(8|16|25|32|50)00AV[BJ]B-.*", |
|---|
| 1674 | "", "", "" |
|---|
| 1675 | }, |
|---|
| 1676 | { "Western Digital AV SATA family", |
|---|
| 1677 | "WDC WD(16|25|32)00AVJS-.*", |
|---|
| 1678 | "", "", "" |
|---|
| 1679 | }, |
|---|
| 1680 | { "Western Digital AV-GP family", |
|---|
| 1681 | "WDC WD((16|25|32|50|64|75)00AVVS|(50|75)00AVCS|10EVVS|(10|20)EVCS|(10|15|20)EVDS)-.*", |
|---|
| 1682 | "", "", "" |
|---|
| 1683 | }, |
|---|
| 1684 | { "Western Digital Raptor family", |
|---|
| 1685 | "WDC WD((360|740|800)GD|(360|740|800|1500)ADF[DS])-.*", |
|---|
| 1686 | "", "", "" |
|---|
| 1687 | }, |
|---|
| 1688 | { "Western Digital Raptor X", |
|---|
| 1689 | "WDC WD1500AHFD-.*", |
|---|
| 1690 | "", "", "" |
|---|
| 1691 | }, |
|---|
| 1692 | { "Western Digital VelociRaptor family", |
|---|
| 1693 | "WDC WD(((800H|(1500|3000)[BH]|1600H|3000G)LFS)|((4500|6000)[BH]LHX))-.*", |
|---|
| 1694 | "", "", "" |
|---|
| 1695 | }, |
|---|
| 1696 | { "Western Digital Scorpio EIDE family", |
|---|
| 1697 | "WDC WD(4|6|8|10|12|16)00(UE|VE)-.*", |
|---|
| 1698 | "", "", "" |
|---|
| 1699 | }, |
|---|
| 1700 | { "Western Digital Scorpio Blue EIDE", // tested with WDC WD3200BEVE-00A0HT0/11.01A11 |
|---|
| 1701 | "WDC WD(4|6|8|10|12|16|25|32)00BEVE-.*", |
|---|
| 1702 | "", "", "" |
|---|
| 1703 | }, |
|---|
| 1704 | { "Western Digital Scorpio Serial ATA family", |
|---|
| 1705 | "WDC WD(4|6|8|10|12|16|25)00BEAS-.*", |
|---|
| 1706 | "", "", "" |
|---|
| 1707 | }, |
|---|
| 1708 | { "Western Digital Scorpio Blue Serial ATA family", |
|---|
| 1709 | "WDC WD((4|6|8|10|12|16|25)00BEVS|(8|12|16|25|32|40|50|64)00BEVT|7500KEVT|10TEVT)-.*", |
|---|
| 1710 | "", "", "" |
|---|
| 1711 | }, |
|---|
| 1712 | { "Western Digital Scorpio Black Serial ATA family", |
|---|
| 1713 | "WDC WD(8|12|16|25|32)00B[EJ]KT-.*", |
|---|
| 1714 | "", "", "" |
|---|
| 1715 | }, |
|---|
| 1716 | { "Western Digital My Passport Essential hard drive (USB interface)", |
|---|
| 1717 | "WDC WD(25|32|40|50)00BMVU-.*", |
|---|
| 1718 | "", "", "" |
|---|
| 1719 | }, |
|---|
| 1720 | { "Western Digital My Passport Essential SE hard drive (USB interface)", |
|---|
| 1721 | "WDC WD(7500K|10T)MVV-.*", |
|---|
| 1722 | "", "", "" |
|---|
| 1723 | }, |
|---|
| 1724 | { "Western Digital My Passport hard drive (USB interface)", // tested with |
|---|
| 1725 | // WDC WD5000BMVW-11AMCS0/01.01A01 |
|---|
| 1726 | "WDC WD(3200BMVV|5000BMVW)-.*", |
|---|
| 1727 | "", "", "" |
|---|
| 1728 | }, |
|---|
| 1729 | { "Quantum Bigfoot series", // tested with TS10.0A/A21.0G00, TS12.7A/A21.0F00 |
|---|
| 1730 | "QUANTUM BIGFOOT TS(10\\.0|12\\.7)A", |
|---|
| 1731 | "", "", "" |
|---|
| 1732 | }, |
|---|
| 1733 | { "Quantum Fireball lct15 series", |
|---|
| 1734 | "QUANTUM FIREBALLlct15 ([123]0|22)", |
|---|
| 1735 | "", "", "" |
|---|
| 1736 | }, |
|---|
| 1737 | { "Quantum Fireball lct20 series", |
|---|
| 1738 | "QUANTUM FIREBALLlct20 [1234]0", |
|---|
| 1739 | "", "", "" |
|---|
| 1740 | }, |
|---|
| 1741 | { "Quantum Fireball CX series", |
|---|
| 1742 | "QUANTUM FIREBALL CX10.2A", |
|---|
| 1743 | "", "", "" |
|---|
| 1744 | }, |
|---|
| 1745 | { "Quantum Fireball CR series", |
|---|
| 1746 | "QUANTUM FIREBALL CR(4.3|6.4|8.4|13.0)A", |
|---|
| 1747 | "", "", "" |
|---|
| 1748 | }, |
|---|
| 1749 | { "Quantum Fireball EX series", |
|---|
| 1750 | "QUANTUM FIREBALL EX(3.2|6.4)A", |
|---|
| 1751 | "", "", "" |
|---|
| 1752 | }, |
|---|
| 1753 | { "Quantum Fireball ST series", |
|---|
| 1754 | "QUANTUM FIREBALL ST(3.2|4.3|4300)A", |
|---|
| 1755 | "", "", "" |
|---|
| 1756 | }, |
|---|
| 1757 | { "Quantum Fireball SE series", |
|---|
| 1758 | "QUANTUM FIREBALL SE4.3A", |
|---|
| 1759 | "", "", "" |
|---|
| 1760 | }, |
|---|
| 1761 | { "Quantum Fireball Plus LM series", |
|---|
| 1762 | "QUANTUM FIREBALLP LM(10.2|15|20.[45]|30)", |
|---|
| 1763 | "", "", "" |
|---|
| 1764 | }, |
|---|
| 1765 | { "Quantum Fireball Plus AS series", |
|---|
| 1766 | "QUANTUM FIREBALLP AS(10.2|20.5|30.0|40.0|60.0)", |
|---|
| 1767 | "", "", "" |
|---|
| 1768 | }, |
|---|
| 1769 | { "Quantum Fireball Plus KX series", |
|---|
| 1770 | "QUANTUM FIREBALLP KX27.3", |
|---|
| 1771 | "", "", "" |
|---|
| 1772 | }, |
|---|
| 1773 | { "Quantum Fireball Plus KA series", |
|---|
| 1774 | "QUANTUM FIREBALLP KA(9|10).1", |
|---|
| 1775 | "", "", "" |
|---|
| 1776 | }, |
|---|
| 1777 | |
|---|
| 1778 | //////////////////////////////////////////////////// |
|---|
| 1779 | // USB ID entries |
|---|
| 1780 | //////////////////////////////////////////////////// |
|---|
| 1781 | |
|---|
| 1782 | // ALi |
|---|
| 1783 | { "USB: ; ALi M5621", // USB->PATA |
|---|
| 1784 | "0x0402:0x5621", |
|---|
| 1785 | "", |
|---|
| 1786 | "", |
|---|
| 1787 | "" // unsupported |
|---|
| 1788 | }, |
|---|
| 1789 | // VIA |
|---|
| 1790 | { "USB: Connectland BE-USB2-35BP-LCM; VIA VT6204", |
|---|
| 1791 | "0x040d:0x6204", |
|---|
| 1792 | "", |
|---|
| 1793 | "", |
|---|
| 1794 | "" // unsupported |
|---|
| 1795 | }, |
|---|
| 1796 | // Buffalo / Melco |
|---|
| 1797 | { "USB: Buffalo JustStore Portable HD-PVU2; ", |
|---|
| 1798 | "0x0411:0x0181", |
|---|
| 1799 | "", |
|---|
| 1800 | "", |
|---|
| 1801 | "-d sat" |
|---|
| 1802 | }, |
|---|
| 1803 | // Toshiba |
|---|
| 1804 | { "USB: Toshiba Canvio 500GB; ", |
|---|
| 1805 | "0x0480:0xa004", |
|---|
| 1806 | "", |
|---|
| 1807 | "", |
|---|
| 1808 | "-d usbsunplus" |
|---|
| 1809 | }, |
|---|
| 1810 | // Cypress |
|---|
| 1811 | { "USB: ; Cypress CY7C68300A (AT2)", |
|---|
| 1812 | "0x04b4:0x6830", |
|---|
| 1813 | "0x0001", |
|---|
| 1814 | "", |
|---|
| 1815 | "" // unsupported |
|---|
| 1816 | }, |
|---|
| 1817 | { "USB: ; Cypress CY7C68300B/C (AT2LP)", |
|---|
| 1818 | "0x04b4:0x6830", |
|---|
| 1819 | "0x0240", |
|---|
| 1820 | "", |
|---|
| 1821 | "-d usbcypress" |
|---|
| 1822 | }, |
|---|
| 1823 | // Myson Century |
|---|
| 1824 | { "USB: ; Myson Century CS8818", |
|---|
| 1825 | "0x04cf:0x8818", |
|---|
| 1826 | "", // 0xb007 |
|---|
| 1827 | "", |
|---|
| 1828 | "" // unsupported |
|---|
| 1829 | }, |
|---|
| 1830 | // Samsung |
|---|
| 1831 | { "USB: Samsung S2 Portable; JMicron", |
|---|
| 1832 | "0x04e8:0x1f0[68]", |
|---|
| 1833 | "", |
|---|
| 1834 | "", |
|---|
| 1835 | "-d usbjmicron" |
|---|
| 1836 | }, |
|---|
| 1837 | { "USB: Samsung Story Station; ", |
|---|
| 1838 | "0x04e8:0x5f06", |
|---|
| 1839 | "", |
|---|
| 1840 | "", |
|---|
| 1841 | "-d sat" |
|---|
| 1842 | }, |
|---|
| 1843 | { "USB: Samsung G2 Portable; JMicron", |
|---|
| 1844 | "0x04e8:0x6032", |
|---|
| 1845 | "", |
|---|
| 1846 | "", |
|---|
| 1847 | "-d usbjmicron" |
|---|
| 1848 | }, |
|---|
| 1849 | { "USB: Samsung Story Station 3.0; ", |
|---|
| 1850 | "0x04e8:0x6054", |
|---|
| 1851 | "", |
|---|
| 1852 | "", |
|---|
| 1853 | "-d sat" |
|---|
| 1854 | }, |
|---|
| 1855 | // Sunplus |
|---|
| 1856 | { "USB: ; SunPlus", |
|---|
| 1857 | "0x04fc:0x0c05", |
|---|
| 1858 | "", |
|---|
| 1859 | "", |
|---|
| 1860 | "-d usbsunplus" |
|---|
| 1861 | }, |
|---|
| 1862 | { "USB: ; SunPlus SPDIF215", |
|---|
| 1863 | "0x04fc:0x0c15", |
|---|
| 1864 | "", // 0xf615 |
|---|
| 1865 | "", |
|---|
| 1866 | "-d usbsunplus" |
|---|
| 1867 | }, |
|---|
| 1868 | { "USB: ; SunPlus SPDIF225", // USB+SATA->SATA |
|---|
| 1869 | "0x04fc:0x0c25", |
|---|
| 1870 | "", // 0x0103 |
|---|
| 1871 | "", |
|---|
| 1872 | "-d usbsunplus" |
|---|
| 1873 | }, |
|---|
| 1874 | // Iomega |
|---|
| 1875 | { "USB: Iomega LPHD080-0; ", |
|---|
| 1876 | "0x059b:0x0272", |
|---|
| 1877 | "", |
|---|
| 1878 | "", |
|---|
| 1879 | "-d usbcypress" |
|---|
| 1880 | }, |
|---|
| 1881 | { "USB: Iomega MDHD500-U; ", |
|---|
| 1882 | "0x059b:0x0275", |
|---|
| 1883 | "", // 0x0001 |
|---|
| 1884 | "", |
|---|
| 1885 | "" // unsupported |
|---|
| 1886 | }, |
|---|
| 1887 | { "USB: Iomega MDHD-UE; ", |
|---|
| 1888 | "0x059b:0x0277", |
|---|
| 1889 | "", |
|---|
| 1890 | "", |
|---|
| 1891 | "-d usbjmicron" |
|---|
| 1892 | }, |
|---|
| 1893 | { "USB: Iomega LDHD-UP; Sunplus", |
|---|
| 1894 | "0x059b:0x0370", |
|---|
| 1895 | "", |
|---|
| 1896 | "", |
|---|
| 1897 | "-d usbsunplus" |
|---|
| 1898 | }, |
|---|
| 1899 | // LaCie |
|---|
| 1900 | { "USB: LaCie hard disk (FA Porsche design);", |
|---|
| 1901 | "0x059f:0x0651", |
|---|
| 1902 | "", |
|---|
| 1903 | "", |
|---|
| 1904 | "" // unsupported |
|---|
| 1905 | }, |
|---|
| 1906 | { "USB: LaCie hard disk; JMicron", |
|---|
| 1907 | "0x059f:0x0951", |
|---|
| 1908 | "", |
|---|
| 1909 | "", |
|---|
| 1910 | "-d usbjmicron" |
|---|
| 1911 | }, |
|---|
| 1912 | { "USB: LaCie hard disk (Neil Poulton design);", |
|---|
| 1913 | "0x059f:0x1018", |
|---|
| 1914 | "", |
|---|
| 1915 | "", |
|---|
| 1916 | "-d sat" |
|---|
| 1917 | }, |
|---|
| 1918 | { "USB: LaCie Desktop Hard Drive; JMicron", |
|---|
| 1919 | "0x059f:0x1019", |
|---|
| 1920 | "", |
|---|
| 1921 | "", |
|---|
| 1922 | "-d usbjmicron" |
|---|
| 1923 | }, |
|---|
| 1924 | { "USB: LaCie Rugged Hard Drive; JMicron", |
|---|
| 1925 | "0x059f:0x101d", |
|---|
| 1926 | "", // 0x0001 |
|---|
| 1927 | "", |
|---|
| 1928 | "-d usbjmicron,x" |
|---|
| 1929 | }, |
|---|
| 1930 | { "USB: LaCie hard disk; ", |
|---|
| 1931 | "0x059f:0x1029", |
|---|
| 1932 | "", // 0x0100 |
|---|
| 1933 | "", |
|---|
| 1934 | "-d sat" |
|---|
| 1935 | }, |
|---|
| 1936 | { "USB: Lacie rikiki; JMicron", |
|---|
| 1937 | "0x059f:0x102a", |
|---|
| 1938 | "", |
|---|
| 1939 | "", |
|---|
| 1940 | "-d usbjmicron,x" |
|---|
| 1941 | }, |
|---|
| 1942 | // In-System Design |
|---|
| 1943 | { "USB: ; In-System/Cypress ISD-300A1", |
|---|
| 1944 | "0x05ab:0x0060", |
|---|
| 1945 | "", // 0x1101 |
|---|
| 1946 | "", |
|---|
| 1947 | "-d usbcypress" |
|---|
| 1948 | }, |
|---|
| 1949 | // Genesys Logic |
|---|
| 1950 | { "USB: ; Genesys Logic GL881E", |
|---|
| 1951 | "0x05e3:0x0702", |
|---|
| 1952 | "", |
|---|
| 1953 | "", |
|---|
| 1954 | "" // unsupported |
|---|
| 1955 | }, |
|---|
| 1956 | { "USB: ; Genesys Logic", // TODO: requires '-T permissive' |
|---|
| 1957 | "0x05e3:0x0718", |
|---|
| 1958 | "", // 0x0041 |
|---|
| 1959 | "", |
|---|
| 1960 | "-d sat" |
|---|
| 1961 | }, |
|---|
| 1962 | // Micron |
|---|
| 1963 | { "USB: Micron USB SSD; ", |
|---|
| 1964 | "0x0634:0x0655", |
|---|
| 1965 | "", |
|---|
| 1966 | "", |
|---|
| 1967 | "" // unsupported |
|---|
| 1968 | }, |
|---|
| 1969 | // Prolific |
|---|
| 1970 | { "USB: ; Prolific PL2507", // USB->PATA |
|---|
| 1971 | "0x067b:0x2507", |
|---|
| 1972 | "", |
|---|
| 1973 | "", |
|---|
| 1974 | "" // unsupported |
|---|
| 1975 | }, |
|---|
| 1976 | { "USB: ; Prolific PL3507", // USB+IEE1394->PATA |
|---|
| 1977 | "0x067b:0x3507", |
|---|
| 1978 | "", // 0x0001 |
|---|
| 1979 | "", |
|---|
| 1980 | "" // unsupported |
|---|
| 1981 | }, |
|---|
| 1982 | // Freecom |
|---|
| 1983 | { "USB: Freecom Hard Drive XS; Sunplus", |
|---|
| 1984 | "0x07ab:0xfc8e", |
|---|
| 1985 | "", // 0x010f |
|---|
| 1986 | "", |
|---|
| 1987 | "-d usbsunplus" |
|---|
| 1988 | }, |
|---|
| 1989 | { "USB: Freecom Classic HD 120GB; ", |
|---|
| 1990 | "0x07ab:0xfccd", |
|---|
| 1991 | "", |
|---|
| 1992 | "", |
|---|
| 1993 | "" // unsupported |
|---|
| 1994 | }, |
|---|
| 1995 | { "USB: Freecom HD 500GB; JMicron", |
|---|
| 1996 | "0x07ab:0xfcda", |
|---|
| 1997 | "", |
|---|
| 1998 | "", |
|---|
| 1999 | "-d usbjmicron" |
|---|
| 2000 | }, |
|---|
| 2001 | // Toshiba |
|---|
| 2002 | { "USB: Toshiba PX1270E-1G16; Sunplus", |
|---|
| 2003 | "0x0930:0x0b03", |
|---|
| 2004 | "", |
|---|
| 2005 | "", |
|---|
| 2006 | "-d usbsunplus" |
|---|
| 2007 | }, |
|---|
| 2008 | { "USB: Toshiba PX1396E-3T01; Sunplus", // similar to Dura Micro 501 |
|---|
| 2009 | "0x0930:0x0b09", |
|---|
| 2010 | "", |
|---|
| 2011 | "", |
|---|
| 2012 | "-d usbsunplus" |
|---|
| 2013 | }, |
|---|
| 2014 | { "USB: Toshiba Stor.E Steel series; Sunplus", |
|---|
| 2015 | "0x0930:0x0b11", |
|---|
| 2016 | "", |
|---|
| 2017 | "", |
|---|
| 2018 | "-d usbsunplus" |
|---|
| 2019 | }, |
|---|
| 2020 | // Seagate |
|---|
| 2021 | { "USB: Seagate FreeAgent Go; ", |
|---|
| 2022 | "0x0bc2:0x2(000|100|101)", |
|---|
| 2023 | "", |
|---|
| 2024 | "", |
|---|
| 2025 | "-d sat" |
|---|
| 2026 | }, |
|---|
| 2027 | { "USB: Seagate FreeAgent Go FW; ", |
|---|
| 2028 | "0x0bc2:0x2200", |
|---|
| 2029 | "", |
|---|
| 2030 | "", |
|---|
| 2031 | "-d sat" |
|---|
| 2032 | }, |
|---|
| 2033 | { "USB: Seagate Expansion Portable; ", |
|---|
| 2034 | "0x0bc2:0x2300", |
|---|
| 2035 | "", |
|---|
| 2036 | "", |
|---|
| 2037 | "-d sat" |
|---|
| 2038 | }, |
|---|
| 2039 | { "USB: Seagate FreeAgent Desktop; ", |
|---|
| 2040 | "0x0bc2:0x3000", |
|---|
| 2041 | "", |
|---|
| 2042 | "", |
|---|
| 2043 | "-d sat" |
|---|
| 2044 | }, |
|---|
| 2045 | { "USB: Seagate FreeAgent Desk; ", |
|---|
| 2046 | "0x0bc2:0x3001", |
|---|
| 2047 | "", |
|---|
| 2048 | "", |
|---|
| 2049 | "-d sat" |
|---|
| 2050 | }, |
|---|
| 2051 | { "USB: Seagate Expansion External; ", // 2TB |
|---|
| 2052 | "0x0bc2:0x3300", |
|---|
| 2053 | "", |
|---|
| 2054 | "", |
|---|
| 2055 | "-d sat" |
|---|
| 2056 | }, |
|---|
| 2057 | { "USB: Seagate FreeAgent Go Flex; ", |
|---|
| 2058 | "0x0bc2:0x5021", |
|---|
| 2059 | "", |
|---|
| 2060 | "", |
|---|
| 2061 | "-d sat" |
|---|
| 2062 | }, |
|---|
| 2063 | { "USB: Seagate FreeAgent Go Flex Desk USB 3.0; ", |
|---|
| 2064 | "0x0bc2:0x50a1", |
|---|
| 2065 | "", |
|---|
| 2066 | "", |
|---|
| 2067 | "-d sat,12" |
|---|
| 2068 | }, |
|---|
| 2069 | // Dura Micro |
|---|
| 2070 | { "USB: Dura Micro 509; Sunplus", |
|---|
| 2071 | "0x0c0b:0xb159", |
|---|
| 2072 | "", // 0x0103 |
|---|
| 2073 | "", |
|---|
| 2074 | "-d usbsunplus" |
|---|
| 2075 | }, |
|---|
| 2076 | // Maxtor |
|---|
| 2077 | { "USB: Maxtor OneTouch; ", |
|---|
| 2078 | "0x0d49:0x7300", |
|---|
| 2079 | "", // 0x0121 |
|---|
| 2080 | "", |
|---|
| 2081 | "-d sat" |
|---|
| 2082 | }, |
|---|
| 2083 | { "USB: Maxtor OneTouch 4; ", |
|---|
| 2084 | "0x0d49:0x7310", |
|---|
| 2085 | "", // 0x0125 |
|---|
| 2086 | "", |
|---|
| 2087 | "-d sat" |
|---|
| 2088 | }, |
|---|
| 2089 | { "USB: Maxtor OneTouch 4 Mini; ", |
|---|
| 2090 | "0x0d49:0x7350", |
|---|
| 2091 | "", // 0x0125 |
|---|
| 2092 | "", |
|---|
| 2093 | "-d sat" |
|---|
| 2094 | }, |
|---|
| 2095 | { "USB: Maxtor Basics Desktop; ", |
|---|
| 2096 | "0x0d49:0x7410", |
|---|
| 2097 | "", // 0x0122 |
|---|
| 2098 | "", |
|---|
| 2099 | "-d sat" |
|---|
| 2100 | }, |
|---|
| 2101 | { "USB: Maxtor Basics Portable; ", |
|---|
| 2102 | "0x0d49:0x7450", |
|---|
| 2103 | "", // 0x0122 |
|---|
| 2104 | "", |
|---|
| 2105 | "-d sat" |
|---|
| 2106 | }, |
|---|
| 2107 | // iRiver |
|---|
| 2108 | { "USB: iRiver iHP-120/140 MP3 Player; Cypress", |
|---|
| 2109 | "0x1006:0x3002", |
|---|
| 2110 | "", // 0x0100 |
|---|
| 2111 | "", |
|---|
| 2112 | "-d usbcypress" |
|---|
| 2113 | }, |
|---|
| 2114 | // Western Digital |
|---|
| 2115 | { "USB: WD My Passport (IDE); Cypress", |
|---|
| 2116 | "0x1058:0x0701", |
|---|
| 2117 | "", // 0x0240 |
|---|
| 2118 | "", |
|---|
| 2119 | "-d usbcypress" |
|---|
| 2120 | }, |
|---|
| 2121 | { "USB: WD My Passport Portable; ", |
|---|
| 2122 | "0x1058:0x0702", |
|---|
| 2123 | "", // 0x0102 |
|---|
| 2124 | "", |
|---|
| 2125 | "-d sat" |
|---|
| 2126 | }, |
|---|
| 2127 | { "USB: WD My Passport Essential; ", |
|---|
| 2128 | "0x1058:0x0704", |
|---|
| 2129 | "", // 0x0175 |
|---|
| 2130 | "", |
|---|
| 2131 | "-d sat" |
|---|
| 2132 | }, |
|---|
| 2133 | { "USB: WD My Passport Elite; ", |
|---|
| 2134 | "0x1058:0x0705", |
|---|
| 2135 | "", // 0x0175 |
|---|
| 2136 | "", |
|---|
| 2137 | "-d sat" |
|---|
| 2138 | }, |
|---|
| 2139 | { "USB: WD My Passport 070A; ", |
|---|
| 2140 | "0x1058:0x070a", |
|---|
| 2141 | "", // 0x1028 |
|---|
| 2142 | "", |
|---|
| 2143 | "-d sat" |
|---|
| 2144 | }, |
|---|
| 2145 | { "USB: WD My Passport 0730; ", |
|---|
| 2146 | "0x1058:0x0730", |
|---|
| 2147 | "", // 0x1008 |
|---|
| 2148 | "", |
|---|
| 2149 | "-d sat" |
|---|
| 2150 | }, |
|---|
| 2151 | { "USB: WD My Book ES; ", |
|---|
| 2152 | "0x1058:0x0906", |
|---|
| 2153 | "", // 0x0012 |
|---|
| 2154 | "", |
|---|
| 2155 | "-d sat" |
|---|
| 2156 | }, |
|---|
| 2157 | { "USB: WD Elements Desktop; ", |
|---|
| 2158 | "0x1058:0x1001", |
|---|
| 2159 | "", // 0x0104 |
|---|
| 2160 | "", |
|---|
| 2161 | "-d sat" |
|---|
| 2162 | }, |
|---|
| 2163 | { "USB: WD Elements Desktop WDE1UBK...; ", |
|---|
| 2164 | "0x1058:0x1003", |
|---|
| 2165 | "", // 0x0175 |
|---|
| 2166 | "", |
|---|
| 2167 | "-d sat" |
|---|
| 2168 | }, |
|---|
| 2169 | { "USB: WD Elements; ", |
|---|
| 2170 | "0x1058:0x1010", |
|---|
| 2171 | "", // 0x0105 |
|---|
| 2172 | "", |
|---|
| 2173 | "-d sat" |
|---|
| 2174 | }, |
|---|
| 2175 | { "USB: WD Elements Desktop; ", // 2TB |
|---|
| 2176 | "0x1058:0x1021", |
|---|
| 2177 | "", // 0x2002 |
|---|
| 2178 | "", |
|---|
| 2179 | "-d sat" |
|---|
| 2180 | }, |
|---|
| 2181 | { "USB: WD My Book Essential; ", |
|---|
| 2182 | "0x1058:0x1100", |
|---|
| 2183 | "", // 0x0165 |
|---|
| 2184 | "", |
|---|
| 2185 | "-d sat" |
|---|
| 2186 | }, |
|---|
| 2187 | { "USB: WD My Book Office Edition; ", // 1TB |
|---|
| 2188 | "0x1058:0x1101", |
|---|
| 2189 | "", // 0x0165 |
|---|
| 2190 | "", |
|---|
| 2191 | "-d sat" |
|---|
| 2192 | }, |
|---|
| 2193 | { "USB: WD My Book; ", |
|---|
| 2194 | "0x1058:0x1102", |
|---|
| 2195 | "", // 0x1028 |
|---|
| 2196 | "", |
|---|
| 2197 | "-d sat" |
|---|
| 2198 | }, |
|---|
| 2199 | { "USB: WD My Book Essential; ", |
|---|
| 2200 | "0x1058:0x1110", |
|---|
| 2201 | "", // 0x1030 |
|---|
| 2202 | "", |
|---|
| 2203 | "-d sat" |
|---|
| 2204 | }, |
|---|
| 2205 | { "USB: WD My Book Essential USB 3.0; ", // 3TB |
|---|
| 2206 | "0x1058:0x1130", |
|---|
| 2207 | "", // 0x1012 |
|---|
| 2208 | "", |
|---|
| 2209 | "-d sat" |
|---|
| 2210 | }, |
|---|
| 2211 | // A-DATA |
|---|
| 2212 | { "USB: A-DATA SH93; Cypress", |
|---|
| 2213 | "0x125f:0xa93a", |
|---|
| 2214 | "", // 0x0150 |
|---|
| 2215 | "", |
|---|
| 2216 | "-d usbcypress" |
|---|
| 2217 | }, |
|---|
| 2218 | // Initio |
|---|
| 2219 | { "USB: ; Initio 316000", |
|---|
| 2220 | "0x13fd:0x0540", |
|---|
| 2221 | "", |
|---|
| 2222 | "", |
|---|
| 2223 | "" // unsupported |
|---|
| 2224 | }, |
|---|
| 2225 | { "USB: ; Initio", // USB->SATA |
|---|
| 2226 | "0x13fd:0x1240", |
|---|
| 2227 | "", // 0x0104 |
|---|
| 2228 | "", |
|---|
| 2229 | "-d sat" |
|---|
| 2230 | }, |
|---|
| 2231 | { "USB: ; Initio", // USB+SATA->SATA |
|---|
| 2232 | "0x13fd:0x1340", |
|---|
| 2233 | "", // 0x0208 |
|---|
| 2234 | "", |
|---|
| 2235 | "-d sat" |
|---|
| 2236 | }, |
|---|
| 2237 | { "USB: Intenso Memory Station 2,5\"; Initio", |
|---|
| 2238 | "0x13fd:0x1840", |
|---|
| 2239 | "", |
|---|
| 2240 | "", |
|---|
| 2241 | "-d sat" |
|---|
| 2242 | }, |
|---|
| 2243 | // Super Top |
|---|
| 2244 | { "USB: Super Top generic enclosure; Cypress", |
|---|
| 2245 | "0x14cd:0x6116", |
|---|
| 2246 | "", |
|---|
| 2247 | "", |
|---|
| 2248 | "-d usbcypress" |
|---|
| 2249 | }, |
|---|
| 2250 | // JMicron |
|---|
| 2251 | { "USB: ; JMicron USB 3.0", |
|---|
| 2252 | "0x152d:0x0539", |
|---|
| 2253 | "", // 0x0100 |
|---|
| 2254 | "", |
|---|
| 2255 | "-d usbjmicron" |
|---|
| 2256 | }, |
|---|
| 2257 | { "USB: ; JMicron ", // USB->SATA->4xSATA (port multiplier) |
|---|
| 2258 | "0x152d:0x0551", |
|---|
| 2259 | "", // 0x0100 |
|---|
| 2260 | "", |
|---|
| 2261 | "-d usbjmicron,x" |
|---|
| 2262 | }, |
|---|
| 2263 | { "USB: OCZ THROTTLE OCZESATATHR8G; JMicron JMF601", |
|---|
| 2264 | "0x152d:0x0602", |
|---|
| 2265 | "", |
|---|
| 2266 | "", |
|---|
| 2267 | "" // unsupported |
|---|
| 2268 | }, |
|---|
| 2269 | { "USB: ; JMicron JM20329", // USB->SATA |
|---|
| 2270 | "0x152d:0x2329", |
|---|
| 2271 | "", // 0x0100 |
|---|
| 2272 | "", |
|---|
| 2273 | "-d usbjmicron" |
|---|
| 2274 | }, |
|---|
| 2275 | { "USB: ; JMicron JM20336", // USB+SATA->SATA, USB->2xSATA |
|---|
| 2276 | "0x152d:0x2336", |
|---|
| 2277 | "", // 0x0100 |
|---|
| 2278 | "", |
|---|
| 2279 | "-d usbjmicron,x" |
|---|
| 2280 | }, |
|---|
| 2281 | { "USB: Generic JMicron adapter; JMicron", |
|---|
| 2282 | "0x152d:0x2337", |
|---|
| 2283 | "", |
|---|
| 2284 | "", |
|---|
| 2285 | "-d usbjmicron" |
|---|
| 2286 | }, |
|---|
| 2287 | { "USB: ; JMicron JM20337/8", // USB->SATA+PATA, USB+SATA->PATA |
|---|
| 2288 | "0x152d:0x2338", |
|---|
| 2289 | "", // 0x0100 |
|---|
| 2290 | "", |
|---|
| 2291 | "-d usbjmicron" |
|---|
| 2292 | }, |
|---|
| 2293 | { "USB: ; JMicron JM20339", // USB->SATA |
|---|
| 2294 | "0x152d:0x2339", |
|---|
| 2295 | "", // 0x0100 |
|---|
| 2296 | "", |
|---|
| 2297 | "-d usbjmicron,x" |
|---|
| 2298 | }, |
|---|
| 2299 | { "USB: ; JMicron", // USB+SATA->SATA |
|---|
| 2300 | "0x152d:0x2351", // e.g. Verbatim Portable Hard Drive 500Gb |
|---|
| 2301 | "", // 0x0100 |
|---|
| 2302 | "", |
|---|
| 2303 | "-d sat" |
|---|
| 2304 | }, |
|---|
| 2305 | { "USB: ; JMicron", // USB->SATA |
|---|
| 2306 | "0x152d:0x2352", |
|---|
| 2307 | "", // 0x0100 |
|---|
| 2308 | "", |
|---|
| 2309 | "-d usbjmicron,x" |
|---|
| 2310 | }, |
|---|
| 2311 | { "USB: ; JMicron", // USB->SATA |
|---|
| 2312 | "0x152d:0x2509", |
|---|
| 2313 | "", // 0x0100 |
|---|
| 2314 | "", |
|---|
| 2315 | "-d usbjmicron,x" |
|---|
| 2316 | }, |
|---|
| 2317 | // ASMedia |
|---|
| 2318 | { "USB: ; ASMedia ASM1051", |
|---|
| 2319 | "0x174c:0x5106", |
|---|
| 2320 | "", |
|---|
| 2321 | "", |
|---|
| 2322 | "-d sat" |
|---|
| 2323 | }, |
|---|
| 2324 | { "USB: ; ASMedia USB 3.0", // BYTECC T-200U3 |
|---|
| 2325 | "0x174c:0x55aa", |
|---|
| 2326 | "", |
|---|
| 2327 | "", |
|---|
| 2328 | "" // unsupported |
|---|
| 2329 | }, |
|---|
| 2330 | // LucidPort |
|---|
| 2331 | { "USB: RaidSonic ICY BOX IB-110StU3-B; LucidPORT USB300", |
|---|
| 2332 | "0x1759:0x500[02]", |
|---|
| 2333 | "", |
|---|
| 2334 | "", |
|---|
| 2335 | "-d sat" |
|---|
| 2336 | }, |
|---|
| 2337 | // Verbatim |
|---|
| 2338 | { "USB: Verbatim FW/USB160; Oxford OXUF934SSA-LQAG", // USB+IEE1394->SATA |
|---|
| 2339 | "0x18a5:0x0215", |
|---|
| 2340 | "", // 0x0001 |
|---|
| 2341 | "", |
|---|
| 2342 | "-d sat" |
|---|
| 2343 | }, |
|---|
| 2344 | { "USB: Verbatim External Hard Drive 47519; Sunplus", // USB->SATA |
|---|
| 2345 | "0x18a5:0x0216", |
|---|
| 2346 | "", |
|---|
| 2347 | "", |
|---|
| 2348 | "-d usbsunplus" |
|---|
| 2349 | }, |
|---|
| 2350 | { "USB: Verbatim Pocket Hard Drive; JMicron", // SAMSUNG SpinPoint N3U-3 (USB, 4KiB LLS) |
|---|
| 2351 | "0x18a5:0x0227", |
|---|
| 2352 | "", |
|---|
| 2353 | "", |
|---|
| 2354 | "-d usbjmicron" // "-d usbjmicron,x" does not work |
|---|
| 2355 | }, |
|---|
| 2356 | // Silicon Image |
|---|
| 2357 | { "USB: Vantec NST-400MX-SR; Silicon Image 5744", |
|---|
| 2358 | "0x1a4a:0x1670", |
|---|
| 2359 | "", |
|---|
| 2360 | "", |
|---|
| 2361 | "" // unsupported |
|---|
| 2362 | }, |
|---|
| 2363 | // SunplusIT |
|---|
| 2364 | { "USB: ; SunplusIT", |
|---|
| 2365 | "0x1bcf:0x0c31", |
|---|
| 2366 | "", |
|---|
| 2367 | "", |
|---|
| 2368 | "-d usbsunplus" |
|---|
| 2369 | }, |
|---|
| 2370 | // Hitachi/SimpleTech |
|---|
| 2371 | { "USB: Hitachi/SimpleTech; JMicron", // 1TB |
|---|
| 2372 | "0x4971:0xce17", |
|---|
| 2373 | "", |
|---|
| 2374 | "", |
|---|
| 2375 | "-d usbjmicron,x" |
|---|
| 2376 | }, |
|---|
| 2377 | // OnSpec |
|---|
| 2378 | { "USB: ; OnSpec", // USB->PATA |
|---|
| 2379 | "0x55aa:0x2b00", |
|---|
| 2380 | "", // 0x0100 |
|---|
| 2381 | "", |
|---|
| 2382 | "" // unsupported |
|---|
| 2383 | }, |
|---|
| 2384 | /* |
|---|
| 2385 | }; // builtin_knowndrives[] |
|---|
| 2386 | */ |
|---|