chiark / gitweb /
libvolume_id: add more software raid signatures
[elogind.git] / extras / volume_id / lib / volume_id.c
index 50eb72dbd5da6995136ca084684a4401df00cb26..fd95e7d3b0c557848e43c35d8227250109122e6b 100644 (file)
@@ -69,6 +69,12 @@ int volume_id_probe_raid(struct volume_id *id, uint64_t off, uint64_t size)
 
                if (volume_id_probe_highpoint_45x_raid(id, off, size) == 0)
                        goto found;
+
+               if (volume_id_probe_adaptec_raid(id, off, size) == 0)
+                       goto found;
+
+               if (volume_id_probe_jmicron_raid(id, off, size) == 0)
+                       goto found;
        }
 
        if (volume_id_probe_lvm1(id, off) == 0)