add ability to remove list and config from a wizard
[enigma2.git] / lib / python / Components / Harddisk.py
index a638977061674e19ef18aa7fde4754fbe4c1f7b7..ca77e56f962eb11f3fc87d0fab1405386de9b375 100644 (file)
@@ -103,7 +103,8 @@ class Harddisk:
 
        def unmount(self):
                cmd = "/bin/umount " + self.devidex + "part*"
 
        def unmount(self):
                cmd = "/bin/umount " + self.devidex + "part*"
-               os.system(cmd)
+               res = os.system(cmd)
+               return (res >> 8)
 
        def createPartition(self):
                cmd = "/sbin/sfdisk -f " + self.devidex + "disc"
 
        def createPartition(self):
                cmd = "/sbin/sfdisk -f " + self.devidex + "disc"
@@ -123,9 +124,11 @@ class Harddisk:
                return (res >> 8)
 
        def createMovieFolder(self):
                return (res >> 8)
 
        def createMovieFolder(self):
-               res = os.system("mkdir /hdd/movie")
+               res = os.system("mkdir /hdd/movies")
                return (res >> 8)
                
                return (res >> 8)
                
+       errorList = [ _("Everything is fine"), _("Creating partition failed"), _("Mkfs failed"), _("Mount failed"), _("Create movie folder failed"), _("Unmount failed")]
+
        def initialize(self):
                self.unmount()
 
        def initialize(self):
                self.unmount()
 
@@ -169,6 +172,12 @@ class HarddiskManager:
                        if hddNum > 8:
                                break
 
                        if hddNum > 8:
                                break
 
+       def HDDCount(self):
+               cnt = 0
+               for hd in self.hdd:
+                       cnt = cnt + 1
+               return cnt      
+
        def HDDList(self):
                list = [ ]
                for hd in self.hdd:
        def HDDList(self):
                list = [ ]
                for hd in self.hdd: