search for: manglepe_fixch

Displaying 4 results from an estimated 4 matches for "manglepe_fixch".

Did you mean: manglepe_fixchs
2012 Aug 01
0
chain module updates
...ts at the same time, and introduces 'prefmbr' flag to force the use of MBR layout in case GPT is present. - com32/chain: recognize exFAT This makes chain exFAT aware by adding yet another "BPB" variation with the usual stuff (partition offset - now 64bit, drive). - com32/chain: manglepe_fixchs() correction Previously fixchs also included start/length 0/0 entries (holes), so this patch makes it a bit more careful. - com32/chain: update licenses Also following brief off-list discussion - license cleanup, though I'm not sure if it's the proper selection. - utils/isohybrid: use...
2014 Jun 29
0
[PATCH 3/6] chain/partiter: adjust error reporting
...32/chain/mangle.c index ffdaab8..6963574 100644 --- a/com32/chain/mangle.c +++ b/com32/chain/mangle.c @@ -562,7 +562,7 @@ int manglepe_hide(struct part_iter *miter) } } - if (pi_errored(iter)) + if (iter->status < 0) goto bail; /* last update */ @@ -663,7 +663,7 @@ int manglepe_fixchs(struct part_iter *miter) } } - if (pi_errored(iter)) + if (iter->status < 0) goto bail; /* last update */ diff --git a/com32/chain/partiter.h b/com32/chain/partiter.h index 13dec84..d01a650 100644 --- a/com32/chain/partiter.h +++ b/com32/chain/partiter.h @@ -42,7 +42,...
2012 Nov 06
50
chain.c32 (and partiter) updates v2
...th both layouts at the same time, and introduces 'prefmbr' flag to force the use of MBR layout in case GPT is present. - recognize exFAT This makes chain exFAT aware by adding yet another "BPB" variation with the usual stuff (partition offset - now 64bit, drive). - com32/chain: manglepe_fixchs() correction Previously fixchs also included start/length 0/0 entries (holes), so this patch makes it a bit more careful. - use disk_guid for part_guid for 0th partition (under GPT layouts) - partiter: make sure 'index' is (-1) also for empty primary partitions The following changes s...
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