summaryrefslogtreecommitdiffstats
path: root/autopart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-11-03 22:15:59 +0000
committerJeremy Katz <katzj@redhat.com>2004-11-03 22:15:59 +0000
commit750b4b1a112613d2da899695c6fee1cc4563c9f2 (patch)
tree37d66ede7345a519174c9b806152045ee8db278b /autopart.py
parentbf098c949d3d2498f80a588167b74e37488f5ca3 (diff)
downloadanaconda-750b4b1a112613d2da899695c6fee1cc4563c9f2.tar.gz
anaconda-750b4b1a112613d2da899695c6fee1cc4563c9f2.tar.xz
anaconda-750b4b1a112613d2da899695c6fee1cc4563c9f2.zip
2004-11-03 Jeremy Katz <katzj@redhat.com>
* autopart.py (getAutopartitionBoot): Use iutil.hasiSeriesNativeStorage instead of iutil.hasIbmSis() * partitions.py (Partitions.sanityCheckAllRequests): Likewise. * iutil.py (hasiSeriesNativeStorage): Rename from hasIbmSis(), check for ipr as well as ibmsis.
Diffstat (limited to 'autopart.py')
-rw-r--r--autopart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/autopart.py b/autopart.py
index ca3434bae..0b93a289d 100644
--- a/autopart.py
+++ b/autopart.py
@@ -1568,9 +1568,9 @@ def getAutopartitionBoot():
elif (iutil.getPPCMachine() == "pSeries"):
return [ (None, "PPC PReP Boot", 4, None, 0, 1, 0),
("/boot", None, 100, None, 0, 1, 0) ]
- elif (iutil.getPPCMachine() == "iSeries") and not iutil.hasIbmSis():
+ elif (iutil.getPPCMachine() == "iSeries") and not iutil.hasiSeriesNativeStorage():
return [ (None, "PPC PReP Boot", 16, None, 0, 1, 0) ]
- elif (iutil.getPPCMachine() == "iSeries") and iutil.hasIbmSis():
+ 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) ,