add box detection as fallback when /proc/stb/info is not avail (old drivers
[vuplus_dvbapp] / lib / python / Tools / HardwareInfo.py
index f426d18..f5c4534 100644 (file)
@@ -9,7 +9,21 @@ class HardwareInfo:
                        print "----------------"
                        print "you should upgrade to new drivers for the hardware detection to work properly"
                        print "----------------"
-               
+                       print "fallback to detect hardware via /proc/cpuinfo!!"
+                       try:
+                               rd = open("/proc/cpuinfo", "r").read()
+                               if rd.find("Brcm4380 V4.2") != 0:
+                                       self.device = "dm8000"
+                                       print "dm8000 detected!"
+                               elif rd.find("Brcm7401 V0.0") != 0:
+                                       self.device = "dm800"
+                                       print "dm800 detected!"
+                               elif rd.find("MIPS 4KEc V4.8") != 0:
+                                       self.device = "dm7025"
+                                       print "dm7025 detected!"
+                       except:
+                               pass
+
        def get_device_name(self):
                return self.device