Displaying 2 results from an estimated 2 matches for "654,41".
Did you mean:
654,11
2014 Jun 29
0
[PATCH 1/6] chain/partiter: fix and improve gpt handling in buggy cases
...,7 @@ struct part_iter *pi_begin(const struct disk_info *di, int flags)
/* Read MBR */
if (!(mbr = disk_read_sectors(di, 0, 1))) {
- error("Couldn't read the first disk sector.");
+ error("Unable to read the first disk sector.");
goto bail;
}
@@ -574,69 +654,41 @@ struct part_iter *pi_begin(const struct disk_info *di, int flags)
}
/* Check for GPT protective MBR */
- gptprot = 0;
for (size_t i = 0; i < 4; i++)
- gptprot |= (mbr->table[i].ostype == 0xEE);
- if (gptprot && !(flags & PIF_PREFMBR)) {
- if (!(gpth =...
2014 Jun 29
10
[PATCH 0/6] chain.c32 patches
This small set fixes few bugs, improves gpt handling (under buggy conditions)
and implements strict flag with more fine grained control which should fix
issues with sanity checks against disk sizes.
If this set is allright I'd want to do what I mentioned in older discussion
with Ady - backport missing patches from 6.x to 5.x and 4.x so all versions
have up to date chain version.
Michal