aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/SystemInfo.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-22 16:01:07 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-22 16:01:07 +0100
commitc8ec3314997b357069372d7dc6746ffc7c21afa5 (patch)
treeef529ece821000d4639ff348dc1417792e2b492a /lib/python/Components/SystemInfo.py
parentf13490a1a66421b08cef893cb89e8f78c5873d05 (diff)
parent29aad534cf1c20a723fe8d736babad1be1e6e9fa (diff)
downloadenigma2-c8ec3314997b357069372d7dc6746ffc7c21afa5.tar.gz
enigma2-c8ec3314997b357069372d7dc6746ffc7c21afa5.zip
Merge branch 'bug_307_fix_deepstandby_texts'
Diffstat (limited to 'lib/python/Components/SystemInfo.py')
-rw-r--r--lib/python/Components/SystemInfo.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/Components/SystemInfo.py b/lib/python/Components/SystemInfo.py
index d2b405a2..f9c4065f 100644
--- a/lib/python/Components/SystemInfo.py
+++ b/lib/python/Components/SystemInfo.py
@@ -1,5 +1,6 @@
from enigma import eDVBResourceManager
from Tools.Directories import fileExists
+from Tools.HardwareInfo import HardwareInfo
SystemInfo = { }
@@ -27,3 +28,4 @@ def countFrontpanelLEDs():
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"