X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/5e942862b2017443ec34831f649f890f8215a534..c900a62b068cf1f583b8936aa0dae18c9683b461:/lib/python/Components/UsageConfig.py diff --git a/lib/python/Components/UsageConfig.py b/lib/python/Components/UsageConfig.py index 3df3a442..d9fb2a55 100644 --- a/lib/python/Components/UsageConfig.py +++ b/lib/python/Components/UsageConfig.py @@ -1,4 +1,5 @@ -from config import ConfigSubsection, ConfigYesNo, config, ConfigSelection, ConfigText, ConfigNumber, ConfigSet, ConfigNothing +from Components.Harddisk import harddiskmanager +from config import ConfigSubsection, ConfigYesNo, config, ConfigSelection, ConfigText, ConfigNumber, ConfigSet from enigma import Misc_Options, setTunerTypePriorityOrder; from SystemInfo import SystemInfo import os @@ -60,7 +61,8 @@ def InitUsageConfig(): config.usage.alternatives_priority.addNotifier(TunerTypePriorityOrderChanged) def setHDDStandby(configElement): - os.system("hdparm -S" + configElement.value + " /dev/ide/host0/bus0/target0/lun0/disc") + for hdd in harddiskmanager.HDDList(): + os.system("hdparm -S%s %s" % (configElement.value, hdd[1].getDeviceName())) config.usage.hdd_standby.addNotifier(setHDDStandby) def set12VOutput(configElement): @@ -80,7 +82,7 @@ def InitUsageConfig(): config.seek.selfdefined_79 = ConfigNumber(default=300) config.seek.speeds_forward = ConfigSet(default=[2, 4, 8, 16, 32, 64, 128], choices=[2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128]) - config.seek.speeds_backward = ConfigSet(default=[2, 4, 8, 16, 32, 64, 128], choices=[1, 2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128]) + config.seek.speeds_backward = ConfigSet(default=[8, 16, 32, 64, 128], choices=[1, 2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128]) config.seek.speeds_slowmotion = ConfigSet(default=[2, 4, 8], choices=[2, 4, 6, 8, 12, 16, 25]) config.seek.enter_forward = ConfigSelection(default = "2", choices = ["2"]) @@ -109,14 +111,13 @@ def InitUsageConfig(): def updateChoices(sel, choices): if choices: - defval = None - val = int(sel.value) + defval = None + val = int(sel.value) if not val in choices: - tmp = choices+[] - tmp.reverse() - for x in tmp: - if x < val: - defval = str(x) - break + tmp = choices+[] + tmp.reverse() + for x in tmp: + if x < val: + defval = str(x) + break sel.setChoices(map(str, choices), defval) -