Custom Query (1414 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (49 - 51 of 1414)

Ticket Resolution Summary Owner Reporter
#889 fixed Patch for syntax error in drivedb.h revision 4474 Alex Samorukov Cmdr_Zod
Description

Just wanted to try out the newest revision of the drivedb.h and failed with a syntax error on line 3168: /var/lib/smartmontools/drivedb/drivedb.h(3168): Syntax error, ',' expected

This patch should fix the bug:

--- drivedb.h.4474      2017-09-23 15:40:30.000000000 +0200
+++ drivedb.h.fixed     2017-09-24 01:52:55.064034496 +0200
@@ -3162,7 +3162,7 @@
   // should be ST4000DM005, ST3000DM008,ST3000DM009,ST2000DM006,ST2000DM007
   // ST1000DM010, ST500DM009
   { "Seagate Barracuda 3.5", // tested on ST1000DM010-2EP102/Z9ACZM97
-    "ST(4000DM005|3000DM008|3000DM009|2000DM006|2000DM007)-"
+    "ST(4000DM005|3000DM008|3000DM009|2000DM006|2000DM007)-",
     "", "",
     "-v 188,raw16 -v 240,msec24hour32"
   },
#891 fixed Patch to support more LaCie and Freecom devices Cmdr_Zod
Description

I recently added a few drives to the list of supported USB devices and figured out I might as well write a patch, at least for the easy ones. I took the freedom to also add a LaCie drive in the list which was not reported by me: Patch is agains revision 4486:

--- drivedb.h.4486      2017-09-24 22:29:44.705214312 +0200
+++ drivedb.h   2017-09-24 23:04:48.549759430 +0200
@@ -4052,6 +4052,12 @@
     "",
     "" // unsupported
   },
+  { "USB: LaCie d2 Quadra; Oxford OXUF934SSA-LQAG ", // USB+IEEE1394+eSATA->SATA
+    "0x059f:0x0828",
+    "",
+    "",
+    "-d sat"
+  },
   { "USB: LaCie hard disk; JMicron",
     "0x059f:0x0951",
     "",
@@ -4064,6 +4070,12 @@
     "",
     "-d sat"
   },
+  { "USB: LaCie Desktop Hard Drive;",
+    "0x059f:0x1010",
+    "",
+    "",
+    "-d usbsunplus"
+  },
   { "USB: LaCie Desktop Hard Drive; ",
     "0x059f:0x101[68]", // 0x1016: SAMSUNG HD103UJ
     "", // 0x0001
@@ -4100,6 +4112,12 @@
     "",
     "-d usbjmicron,x"
   },
+  { "USB: LaCie D2 USB2; LucidPort USB300 ",
+    "0x059f:0x103d",
+    "",
+    "",
+    "-d sat"
+  },
   { "USB: LaCie rikiki USB 3.0; ",
     "0x059f:0x10(49|57)",
     "",
@@ -4202,6 +4220,12 @@
     "",
     "",
     "-d sat"
+  },
+  { "USB: Freecom Quattro 3.0; ", // USB3.0+IEEE1394+eSATA->SATA
+    "0x07ab:0xfc77",
+    "",
+    "",
+    "-d sat"
   },
   { "USB: Freecom Mobile Drive XXS; JMicron",
     "0x07ab:0xfc88",
#893 fixed Please add support for Corsair Voyager GTX (partial patch included) Cmdr_Zod
Description

The USB Flash drive Corsair Voyager GTX is missing in the database. Following patch against revision 4487 fixes the USB detection (and a typo in the Lacie D2 USB3)

--- drivedb.h.4487      2017-09-25 09:41:00.000000000 +0200
+++ drivedb.h   2017-09-25 12:51:20.772967612 +0200
@@ -4112,7 +4112,7 @@
     "",
     "-d usbjmicron,x"
   },
-  { "USB: LaCie D2 USB2; LucidPort USB300 ",
+  { "USB: LaCie D2 USB3; LucidPort USB300 ",
     "0x059f:0x103d",
     "",
     "",
@@ -4895,6 +4895,13 @@
     "",
     "" // unsupported
   },
+  // Corsair
+  { "USB: Voyager GTX; ",
+    "0x1b1c:0x1a0e",
+    "",
+    "",
+    "-d sat"
+  },
   // SunplusIT
   { "USB: ; SunplusIT",
     "0x1bcf:0x0c31",

I attached smartctl output of 'smartctl -q noserial -x /dev/sdX' for the SSD part, I don't feel confident in patching this myself.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.