Merge pull request #233 from marineam/mbr

fix(disk_util): Switch back to gptmbr.bin for our MBR boot code.
This commit is contained in:
Michael Marineau 2014-04-25 16:35:38 -07:00
commit 1c328d7c0d

View File

@ -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):