summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--autopart.py3
-rw-r--r--installclass.py7
2 files changed, 3 insertions, 7 deletions
diff --git a/autopart.py b/autopart.py
index fb66fedd1..029c2bd83 100644
--- a/autopart.py
+++ b/autopart.py
@@ -1579,7 +1579,8 @@ def getAutopartitionBoot():
elif (iutil.getPPCMachine() == "iSeries") and iutil.hasiSeriesNativeStorage():
return []
elif (iutil.getPPCMachine() == "PMac") and iutil.getPPCMacGen() == "NewWorld":
- return [ ( None, "Apple Bootstrap", 1, 1, 0, 1, 0) ]
+ return [ ( None, "Apple Bootstrap", 1, 1, 0, 1, 0),
+ ("/boot", None, 100, None, 0, 1, 0) ]
else:
return [ ("/boot", None, 100, None, 0, 1, 0) ]
diff --git a/installclass.py b/installclass.py
index 8fc78a08c..72c14c007 100644
--- a/installclass.py
+++ b/installclass.py
@@ -551,12 +551,7 @@ class BaseInstallClass:
if doClear:
partitions.autoClearPartType = clear
partitions.autoClearPartDrives = []
-
- if (iutil.getPPCMachine() == "PMac"):
- # No LVM on a Mac partition table
- partitions.autoPartitionRequests = autoCreatePartitionRequests(autorequests)
- else:
- partitions.autoPartitionRequests = autoCreateLVMPartitionRequests(autorequests)
+ partitions.autoPartitionRequests = autoCreateLVMPartitionRequests(autorequests)
def setInstallData(self, id, intf = None):