From 67faf09dfe31f3c44d5e32bc001c2ae372dcc780 Mon Sep 17 00:00:00 2001 From: Ronny Strutz Date: Wed, 9 Nov 2005 14:45:23 +0000 Subject: even say something if no hdd is present --- lib/python/Screens/HarddiskSetup.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'lib/python/Screens/HarddiskSetup.py') diff --git a/lib/python/Screens/HarddiskSetup.py b/lib/python/Screens/HarddiskSetup.py index 3d605924..8a683a54 100644 --- a/lib/python/Screens/HarddiskSetup.py +++ b/lib/python/Screens/HarddiskSetup.py @@ -27,19 +27,19 @@ class HarddiskSetup(Screen): }) def hddInitialize(self): - #some protection for the exhibition (IFA 2005) - #if self.hdd.getIndex() == 2: #CF - # print "not a good idea!" - # self.session.open(MessageBox, "not a good idea - this will kill our rootfs!") - #else: print "this will start the initialize now!" self.hdd.initialize() class HarddiskSelection(Screen): def __init__(self, session): Screen.__init__(self, session) - - self["hddlist"] = MenuList(harddiskmanager.HDDList()) + + if harddiskmanager.HDDCount() == 0: + tlist = [] + tlist.append(("no HDD found", 0)) + self["hddlist"] = MenuList(tlist) + else: + self["hddlist"] = MenuList(harddiskmanager.HDDList()) self["actions"] = ActionMap(["OkCancelActions"], { @@ -49,4 +49,5 @@ class HarddiskSelection(Screen): def okbuttonClick(self): selection = self["hddlist"].getCurrent() - self.session.open(HarddiskSetup, selection[1]) + if selection[1] != 0: + self.session.open(HarddiskSetup, selection[1]) -- cgit v1.2.3