diff options
author | Michal Soltys <soltys@ziu.info> | 2014-11-26 01:34:58 +0100 |
---|---|---|
committer | Gene Cumm <gene.cumm@gmail.com> | 2015-03-15 04:39:24 -0400 |
commit | 7fb6d3a2c546ff77af8f33fd9dc95cbbc6e5771f (patch) | |
tree | 2e222c02ad3df6d100fe801c7f63b1ba30d5bba0 /com32/chain/partiter.h | |
parent | 1d09bc044a3aea7edf15caf28dd71308137c57e4 (diff) | |
download | syslinux-7fb6d3a2c546ff77af8f33fd9dc95cbbc6e5771f.tar.gz |
chain/partiter: add options to ignore GPT crc checks
This can be useful to force boot even if checksums of GPT header and/or
partition list are invalid. This works independently from 'strict'
option.
Signed-off-by: Michal Soltys <soltys@ziu.info>
Diffstat (limited to 'com32/chain/partiter.h')
-rw-r--r-- | com32/chain/partiter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/chain/partiter.h b/com32/chain/partiter.h index 22c0e42f..6d4fdb63 100644 --- a/com32/chain/partiter.h +++ b/com32/chain/partiter.h @@ -46,7 +46,7 @@ enum {PI_ERRLOAD = -31, PI_INSANE, PI_OK = 0, PI_DONE}; /* flags */ -enum {PIF_STEPALL = 1, PIF_PREFMBR = 2, PIF_STRICT = 4, PIF_STRICTER = 8}; +enum {PIF_STEPALL = 1, PIF_PREFMBR = 2, PIF_STRICT = 4, PIF_STRICTER = 8, PIF_GPTHCRC = 16, PIF_GPTLCRC = 32}; struct itertype; struct part_iter; |