From e16aec2d0892f391da7cfb8d2474602b5e924698 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Fri, 9 Jun 2006 20:25:49 +0000 Subject: 2006-06-09 Jeremy Katz * partitions.py (Partitions.sanityCheckAllRequests): Sanity check to ensure /boot on the mactels is on one of the first 4 parts * partedUtils.py (DiskSet.savePartitions): Use gptsync to sync gpt->mbr on mactels (archLabels): Allow gpt on i386, x86_64 * bootloader.py (bootloaderSetupChoices): mactels need their bootloader on the partition. --- bootloader.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bootloader.py') diff --git a/bootloader.py b/bootloader.py index e497fb0eb..a4f8cb33e 100644 --- a/bootloader.py +++ b/bootloader.py @@ -83,6 +83,8 @@ def bootloaderSetupChoices(anaconda): log.warning("MBR not suitable as boot device; installing to partition") anaconda.id.bootloader.defaultDevice = "boot" anaconda.id.bootloader.setDevice(choices[anaconda.id.bootloader.defaultDevice][0]) + elif choices and iutil.isMactel() and choices.has_key("boot"): # haccckkkk + anaconda.id.bootloader.setDevice(choices["boot"][0]) elif choices and choices.has_key("mbr"): anaconda.id.bootloader.setDevice(choices["mbr"][0]) elif choices and choices.has_key("boot"): -- cgit