aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-29 23:33:59 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-29 23:33:59 +0000
commit09bec48e92abda051445a3888767fff1081bbe22 (patch)
tree96f0aeb2e1e0db3faba00044fc5d98b202e5c461 /lib/python/Screens
parentd290a6895aaba9660184b2ac9c1bb90d81ae494c (diff)
downloadenigma2-09bec48e92abda051445a3888767fff1081bbe22.tar.gz
enigma2-09bec48e92abda051445a3888767fff1081bbe22.zip
show error messages when hdd-init fails
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/HarddiskSetup.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/python/Screens/HarddiskSetup.py b/lib/python/Screens/HarddiskSetup.py
index 3e90d4fb..1f936010 100644
--- a/lib/python/Screens/HarddiskSetup.py
+++ b/lib/python/Screens/HarddiskSetup.py
@@ -9,8 +9,8 @@ from enigma import eTimer
class HarddiskWait(Screen):
def doInit(self):
self.timer.stop()
- self.hdd.initialize()
- self.close()
+ result = self.hdd.initialize()
+ self.close(result)
def __init__(self, session, hdd):
Screen.__init__(self, session)
@@ -41,9 +41,13 @@ class HarddiskSetup(Screen):
"red": self.hddInitialize
})
- def hddReady(self):
- self.close()
-
+ def hddReady(self, result):
+ print "Result: " + str(result)
+ if (result != 0):
+ self.session.open(MessageBox, _("Unable to initialize harddisk.\nPlease refer to the user-manual.\nError: ") + str(self.hdd.errorList[0 - result]))
+ else:
+ self.close()
+
def hddInitialize(self):
print "this will start the initialize now!"
self.session.openWithCallback(self.hddReady, HarddiskWait, self.hdd)