|
@@ -301,7 +301,9 @@ static void parse_bsd(struct parsed_partitions *state,
|
|
|
continue;
|
|
|
bsd_start = le32_to_cpu(p->p_offset);
|
|
|
bsd_size = le32_to_cpu(p->p_size);
|
|
|
- if (memcmp(flavour, "bsd\0", 4) == 0)
|
|
|
+ /* FreeBSD has relative offset if C partition offset is zero */
|
|
|
+ if (memcmp(flavour, "bsd\0", 4) == 0 &&
|
|
|
+ le32_to_cpu(l->d_partitions[2].p_offset) == 0)
|
|
|
bsd_start += offset;
|
|
|
if (offset == bsd_start && size == bsd_size)
|
|
|
/* full parent partition, we have it already */
|