summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2004-07-05 14:41:40 +0000
committerPaul Nasrat <pnasrat@redhat.com>2004-07-05 14:41:40 +0000
commit953a724bf0ab182ae17607b78425f34b88110e62 (patch)
treeb1057cd9f00e377fab91eba4493f28a4759cdf44
parent071f0355fe62dc422267f6e0b1c7567d6c39f1b5 (diff)
downloadanaconda-953a724bf0ab182ae17607b78425f34b88110e62.tar.gz
anaconda-953a724bf0ab182ae17607b78425f34b88110e62.tar.xz
anaconda-953a724bf0ab182ae17607b78425f34b88110e62.zip
Automatically create Apple Bootstrap (#121266)
-rw-r--r--autopart.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/autopart.py b/autopart.py
index b3452df94..04d3eceaa 100644
--- a/autopart.py
+++ b/autopart.py
@@ -1437,6 +1437,8 @@ def getAutopartitionBoot():
return [ (None, "PPC PReP Boot", 16, None, 0, 1) ]
elif (iutil.getPPCMachine() == "iSeries") and iutil.hasIbmSis():
return []
+ elif (iutil.getPPCMachine() == "PMac") and iutil.getPPCMacGen == "NewWorld":
+ return [ ( None, "Apple Bootstrap", 1, 1, 0, 1) ]
else:
return [ ("/boot", None, 100, None, 0, 1) ]