summaryrefslogtreecommitdiffstats
path: root/pyanaconda/packages.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2010-12-09 11:11:25 -1000
committerDavid Cantrell <dcantrell@redhat.com>2010-12-09 16:04:53 -1000
commitf177a032918547b62821d81ba34c047dc1e283aa (patch)
treeb64f8d5982632ed1a85f2dbd1c292d81fe9b5532 /pyanaconda/packages.py
parentad48ecb3368f989d15171b33f642a3d209ae59e0 (diff)
downloadanaconda-f177a032918547b62821d81ba34c047dc1e283aa.tar.gz
anaconda-f177a032918547b62821d81ba34c047dc1e283aa.tar.xz
anaconda-f177a032918547b62821d81ba34c047dc1e283aa.zip
Use chreipl to set the IPL device on s390x (#632325)
Remove existing reIPL configuration code and replace with a call to chreipl(8) from s390utils. Log errors and on failure, pass an statement to the user telling them what to do next to continue installation. (cherry picked from commit 52bbf2e991be855589847c9131bdb13fbcab3b0e)
Diffstat (limited to 'pyanaconda/packages.py')
-rw-r--r--pyanaconda/packages.py13
1 files changed, 1 insertions, 12 deletions
diff --git a/pyanaconda/packages.py b/pyanaconda/packages.py
index 2765630a4..aa8dfc7d2 100644
--- a/pyanaconda/packages.py
+++ b/pyanaconda/packages.py
@@ -349,20 +349,9 @@ def betaNagScreen(anaconda):
break
def doReIPL(anaconda):
-# # This is here as an example to fix the screen during the TUI debugging path
-# anaconda.intf.screen.suspend ()
-# import pdb
-# pdb.set_trace ()
-
if not iutil.isS390() or anaconda.dir == DISPATCH_BACK:
return DISPATCH_NOOP
- messageInfo = iutil.reIPL(anaconda, os.getppid())
-
- if messageInfo:
- (errorMessage, rebootInstr) = messageInfo
-
- # errorMessage intentionally not shown in UI
- anaconda.reIPLMessage = rebootInstr
+ anaconda.reIPLMessage = iutil.reIPL(anaconda, os.getppid())
return DISPATCH_FORWARD