summaryrefslogtreecommitdiffstats
path: root/autopart.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2004-07-07 15:41:01 +0000
committerPaul Nasrat <pnasrat@redhat.com>2004-07-07 15:41:01 +0000
commitfcaf44d7d9810749dbbd762d68a436591833b35e (patch)
tree2b65f19535e5c6dfc632c0a4e5d5b840c5a94093 /autopart.py
parent524c261ffb6876e04afc526dc62ee772a1d0419c (diff)
downloadanaconda-fcaf44d7d9810749dbbd762d68a436591833b35e.tar.gz
anaconda-fcaf44d7d9810749dbbd762d68a436591833b35e.tar.xz
anaconda-fcaf44d7d9810749dbbd762d68a436591833b35e.zip
Add seperate /boot for ppc
Diffstat (limited to 'autopart.py')
-rw-r--r--autopart.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/autopart.py b/autopart.py
index 04d3eceaa..d51b2d532 100644
--- a/autopart.py
+++ b/autopart.py
@@ -1438,7 +1438,8 @@ def getAutopartitionBoot():
elif (iutil.getPPCMachine() == "iSeries") and iutil.hasIbmSis():
return []
elif (iutil.getPPCMachine() == "PMac") and iutil.getPPCMacGen == "NewWorld":
- return [ ( None, "Apple Bootstrap", 1, 1, 0, 1) ]
+ return [ ( None, "Apple Bootstrap", 1, 1, 0, 1) ,
+ ("/boot", None, 100, None, 0, 1) ]
else:
return [ ("/boot", None, 100, None, 0, 1) ]