diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | lib/MGA/DrakISO/BuildISO.pm | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,5 @@ +- support starting isohybrid protective partition at sector 1 + 1.2: - draklive: enable boot from updated kernel in persistent overlay diff --git a/lib/MGA/DrakISO/BuildISO.pm b/lib/MGA/DrakISO/BuildISO.pm index 7dc3667..532b0db 100644 --- a/lib/MGA/DrakISO/BuildISO.pm +++ b/lib/MGA/DrakISO/BuildISO.pm @@ -129,6 +129,9 @@ sub build_iso_image { # for USB EFI boot '-part_like_isohybrid', '-iso_mbr_part_type', '0x00', + if_($build->{media}{protect_sector_0} eq 'no', + '--protective-msdos-label', + ), '-append_partition', 2, '0xef', $esp_image, ), '-o', $dest, |