Restricted size of patchable boot images to 32 MB and prevented

stream filtering on such boot images.
This commit is contained in:
2015-08-11 12:02:26 +02:00
parent d3fefe4735
commit c8ed18695f
4 changed files with 23 additions and 4 deletions

View File

@@ -8312,6 +8312,14 @@ int iso_conv_name_chars(IsoWriteOpts *opts, char *name, size_t name_len,
(NOTE, HIGH, -409) */
#define ISO_NOT_REPRODUCIBLE 0xB030FE67
/** May not write boot info into filtered stream of boot image
(FAILURE, HIGH, -410) */
#define ISO_PATCH_FILTERED_BOOT 0xE830FE66
/** Boot image to large to buffer for writing boot info
(FAILURE, HIGH, -411) */
#define ISO_PATCH_OVERSIZED_BOOT 0xE830FE65
/* Internal developer note:
Place new error codes directly above this comment.