diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | partitions.py | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2005-02-23 Chris Lumens <clumens@redhat.com> + + * partitions.py: Fix clampPVSize call. Fix typo in + getBootableRequest. + 2005-02-23 Paul Nasrat <pnasrat@redhat.com> * loader2/cdinstall.c: Eject CD when failing (#147272) diff --git a/partitions.py b/partitions.py index b11bb8e82..cc6e74f49 100644 --- a/partitions.py +++ b/partitions.py @@ -528,7 +528,7 @@ class Partitions: # if we get here, there's no PV data in the partition, # so clamp the partition's size to 64M size = partedUtils.getPartSizeMB(part) - size = clampPVSize(size, 65536) + size = lvm.clampPVSize(size, 65536) if used == 0: rc.append((partrequest.uniqueID, size, 0)) @@ -629,7 +629,7 @@ class Partitions: if iutil.getPPCMachine() == "pSeries": boottype = "PPC PReP Boot" - else + else: boottype = "Apple Bootstrap" # for the prep partition, we want either the first or the |