summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-09-02 21:35:28 +0000
committerJeremy Katz <katzj@redhat.com>2003-09-02 21:35:28 +0000
commit483ee50a692279a62531da922b3117e52f670a00 (patch)
treed2262536d1d24dcd3527bc0c3cb8ef2be541e0ee
parent064557e814d2d99c7b354357151b5984a177bfb3 (diff)
downloadanaconda-483ee50a692279a62531da922b3117e52f670a00.tar.gz
anaconda-483ee50a692279a62531da922b3117e52f670a00.tar.xz
anaconda-483ee50a692279a62531da922b3117e52f670a00.zip
if we don't have a prep partition on iseries, it's not quite the end
of the world as we can still write to the sides (#103249)
-rw-r--r--bootloader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader.py b/bootloader.py
index 66c56641d..323b0d875 100644
--- a/bootloader.py
+++ b/bootloader.py
@@ -38,7 +38,7 @@ def bootloaderSetupChoices(dispatch, bl, fsset, diskSet, dir):
return
choices = fsset.bootloaderChoices(diskSet, bl)
- if not choices:
+ if not choices and iutil.getPPCMachine() != "iSeries":
dispatch.skipStep("instbootloader")
else:
dispatch.skipStep("instbootloader", skip = 0)