summaryrefslogtreecommitdiffstats
path: root/booty
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-03-31 16:27:16 -0400
committerChris Lumens <clumens@redhat.com>2009-04-01 10:34:41 -0400
commitb6427940cfd2de348e70f86d729e1812a46d45e5 (patch)
treec1deac07a142fb13ecad3c7d6ea60ab667750898 /booty
parent7134501eac153dde2e86cd1606116dcd4007373c (diff)
downloadanaconda-b6427940cfd2de348e70f86d729e1812a46d45e5.tar.gz
anaconda-b6427940cfd2de348e70f86d729e1812a46d45e5.tar.xz
anaconda-b6427940cfd2de348e70f86d729e1812a46d45e5.zip
Fix testing if a PPC partition is bootable (#492726).
Diffstat (limited to 'booty')
-rw-r--r--booty/bootloaderInfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/booty/bootloaderInfo.py b/booty/bootloaderInfo.py
index ff9592ecb..e1a141458 100644
--- a/booty/bootloaderInfo.py
+++ b/booty/bootloaderInfo.py
@@ -225,7 +225,7 @@ class BootImages:
# be the correct one to boot with XP using ntfs
foundDos = True
elif type in ["hfs", "hfs+"] and rhpl.getPPCMachine() == "PMac":
- if self.partedFlags[parted.PARTITION_BOOT]:
+ if part.bootable:
retval.append((part, type))
rootDevice = storage.fsset.rootDevice