From: ghost Date: Tue, 3 Feb 2009 14:47:13 +0000 (+0100) Subject: also check devidex2 here X-Git-Tag: 2.6.0~474 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/337572d8d61c37c2121a96ec7ab79e191eaa2e29?hp=e513f0a6d8f8be86764d3c70d9ba253cd75bf402 also check devidex2 here --- diff --git a/lib/python/Components/Harddisk.py b/lib/python/Components/Harddisk.py index 9cf9b4a2..404baafa 100644 --- a/lib/python/Components/Harddisk.py +++ b/lib/python/Components/Harddisk.py @@ -130,7 +130,7 @@ class Harddisk: cmd = "/bin/umount" for line in procfile: - if line.startswith(self.devidex): + if line.startswith(self.devidex) or line.startswith(self.devidex2): parts = line.split() cmd = ' '.join([cmd, parts[1]])