X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FComponents%2FSystemInfo.py;h=d66437eb88a4ae2486c4c2eb125ebd6161d62d3d;hp=f9c4065fa951e2f5d2d595b52bc0775b2b896843;hb=0fee8bdaa26f854460b63475c91f1f2cf762594b;hpb=699e95c18614b5e6c659a82ae955be6c3920f6e5 diff --git a/lib/python/Components/SystemInfo.py b/lib/python/Components/SystemInfo.py old mode 100644 new mode 100755 index f9c4065..d66437e --- a/lib/python/Components/SystemInfo.py +++ b/lib/python/Components/SystemInfo.py @@ -1,5 +1,5 @@ -from enigma import eDVBResourceManager -from Tools.Directories import fileExists +from enigma import eDVBResourceManager, eDVBCIInterfaces +from Tools.Directories import fileExists, fileCheck from Tools.HardwareInfo import HardwareInfo SystemInfo = { } @@ -29,3 +29,18 @@ SystemInfo["NumFrontpanelLEDs"] = countFrontpanelLEDs() SystemInfo["FrontpanelDisplay"] = fileExists("/dev/dbox/oled0") or fileExists("/dev/dbox/lcd0") SystemInfo["FrontpanelDisplayGrayscale"] = fileExists("/dev/dbox/oled0") SystemInfo["DeepstandbySupport"] = HardwareInfo().get_device_name() != "dm800" +SystemInfo["HdmiInSupport"] = HardwareInfo().get_vu_device_name() in ("ultimo4k", "uno4kse", "duo4k") +SystemInfo["WOWLSupport"] = HardwareInfo().get_vu_device_name() in ("ultimo4k", "duo4k") +SystemInfo["ScrambledPlayback"] = "PVR" in open("/proc/stb/tsmux/ci0_input_choices").read() +SystemInfo["FastChannelChange"] = fileExists("/proc/stb/frontend/fbc/fcc") +SystemInfo["MiniTV"] = fileExists("/proc/stb/lcd/live_enable") +SystemInfo["DisableUsbRecord"] = HardwareInfo().get_vu_device_name() in ("solo4k", "uno4kse", "zero4k", "duo4k") +SystemInfo["DefaultAniSpeed"] = HardwareInfo().get_vu_device_name() in ("uno4k", "uno4kse", "zero4k", "duo4k") and 25 or 20 +SystemInfo["DefaultFullHDSkin"] = HardwareInfo().get_vu_device_name() in ("solo4k", "ultimo4k", "uno4k", "uno4kse", "zero4k", "duo4k") +SystemInfo["PVRSupport"] = HardwareInfo().get_vu_device_name() not in ["solose", "zero", "uno4k"] + +SystemInfo["CommonInterface"] = eDVBCIInterfaces.getInstance().getNumOfSlots() +SystemInfo["CommonInterfaceCIDelay"] = fileCheck("/proc/stb/tsmux/rmx_delay") +for cislot in range (0, SystemInfo["CommonInterface"]): + SystemInfo["CI%dSupportsHighBitrates" % cislot] = fileCheck("/proc/stb/tsmux/ci%d_tsclk" % cislot) + SystemInfo["CI%dRelevantPidsRoutingSupport" % cislot] = fileCheck("/proc/stb/tsmux/ci%d_relevant_pids_routing" % cislot)