From 476bae747e2a1d7ec11c7eb5fd4a5bcb26411893 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Fri, 25 Apr 2014 11:15:17 -0700 Subject: [PATCH] fix(disk_util): Switch back to gptmbr.bin for our MBR boot code. Using the classic mbr.bin was only needed during the transition from syslinux 3 to 6 because the behavior of gptmbr.bin changed after 3. Now that the transition is done and cgpt supports the new scheme now it is time we switched back. This avoids depending on using a hybrid MBR. --- build_library/disk_util | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_library/disk_util b/build_library/disk_util index 01f10939f0..6542ca812e 100755 --- a/build_library/disk_util +++ b/build_library/disk_util @@ -15,8 +15,8 @@ import uuid # First sector we can use. GPT_RESERVED_SECTORS = 34 -# Default MBR boot code for hybrid MBRs -DEFAULT_MBR_BOOT_CODE = '/usr/share/syslinux/mbr.bin' +# Default MBR boot code for GPT +DEFAULT_MBR_BOOT_CODE = '/usr/share/syslinux/gptmbr.bin' class ConfigNotFound(Exception):