diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-05-18 11:17:47 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-05-18 11:17:47 +0000 |
| commit | ac203607d047ed489f339ab211907d1d1a1ff133 (patch) | |
| tree | fa7d60f101e9047d2c0a3069a5dee98a6f07be50 /lib/python/Screens/StartWizard.py | |
| parent | 605ad52612d47d3ff18a4b045bc1ade29277722e (diff) | |
| download | enigma2-ac203607d047ed489f339ab211907d1d1a1ff133.tar.gz enigma2-ac203607d047ed489f339ab211907d1d1a1ff133.zip | |
don't show in startwizard
- tuner config if config.misc.startwizard.shownimconfig = False
- service scan if config.misc.startwizard.doservicescan = False
can be used to preconfigure an image through defaults in the dealer
partition
Diffstat (limited to 'lib/python/Screens/StartWizard.py')
| -rw-r--r-- | lib/python/Screens/StartWizard.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py index 23c3cd71..d0ece295 100644 --- a/lib/python/Screens/StartWizard.py +++ b/lib/python/Screens/StartWizard.py @@ -2,11 +2,14 @@ from Wizard import wizardManager from Screens.WizardLanguage import WizardLanguage from Components.Pixmap import Pixmap, MovingPixmap -from Components.config import config, ConfigBoolean, configfile +from Components.config import config, ConfigBoolean, configfile, ConfigSubsection from LanguageSelection import LanguageSelection config.misc.firstrun = ConfigBoolean(default = True) +config.misc.startwizard = ConfigSubsection() +config.misc.startwizard.shownimconfig = ConfigBoolean(default = True) +config.misc.startwizard.doservicescan = ConfigBoolean(default = True) config.misc.languageselected = ConfigBoolean(default = True) class StartWizard(WizardLanguage): |
