X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FComponents%2FSystemInfo.py;h=5ee95105c923d2aeb5bbbe12258472794acba172;hp=f9c4065fa951e2f5d2d595b52bc0775b2b896843;hb=439941c4d23e8384ea334d599b42b338beb7ebd5;hpb=f16e3ef9d1cf770517a6b21cc80884ea845d7ed4 diff --git a/lib/python/Components/SystemInfo.py b/lib/python/Components/SystemInfo.py index f9c4065..5ee9510 100644 --- a/lib/python/Components/SystemInfo.py +++ b/lib/python/Components/SystemInfo.py @@ -29,3 +29,12 @@ 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") +SystemInfo["WOWLSupport"] = HardwareInfo().get_vu_device_name() == "ultimo4k" +SystemInfo["ScrambledPlayback"] = HardwareInfo().get_vu_device_name() in ("solo4k", "ultimo4k", "uno4kse", "zero4k") +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") +SystemInfo["DefaultAniSpeed"] = HardwareInfo().get_vu_device_name() in ("uno4k", "uno4kse", "zero4k") and 25 or 20 +SystemInfo["DefaultFullHDSkin"] = HardwareInfo().get_vu_device_name() in ("solo4k","ultimo4k","uno4k","uno4kse","zero4k") +SystemInfo["PVRSupport"] = HardwareInfo().get_vu_device_name() not in ["solose", "zero", "uno4k"]