aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/NimManager.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index f04d076d..53c6b62c 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -132,7 +132,14 @@ class NimManager:
nimfile = tryOpen("/proc/bus/nim_sockets")
if nimfile == "":
- return self.nimType["empty/unknown"]
+ # FIXME: remove this in the final version
+ # check if we have a device for 7020 comp?atibility reasons
+ try:
+ open("/dev/dvb/card0/frontend" + str(slotID))
+ return self.nimType["DVB-S"]
+ except IOError:
+ return self.nimType["empty/unknown"]
+
while 1:
line = nimfile.readline()