2 <step id="restorequestion">
4 from Components.config import config
5 from Plugins.SystemPlugins.SoftwareManager.ImageWizard import checkConfigBackup
6 self.backuppath = checkConfigBackup()
7 self.condition = (self.backuppath is not None and config.misc.firstrun.value)
9 <text value="Do you want to restore your settings?" />
11 <listentry caption="Yes, restore the settings now" step="restore" />
12 <listentry caption="No, just start my dreambox" step="end" />
15 self.clearSelectedKeys()
21 <text value="Welcome to the Image upgrade wizard. The wizard will assist you in upgrading the firmware of your Dreambox by providing a backup facility for your current settings and a short explanation of how to upgrade your firmware." />
23 <listentry caption="OK, guide me through the upgrade process" step="backupquestion" />
24 <listentry caption="Exit the wizard" step="end" />
28 <step id="backupquestion">
29 <text value="The wizard can backup your current settings. Do you want to do a backup now?" />
31 <listentry caption="Yes, backup my settings!" step="backupwhere" />
32 <listentry caption="No backup needed" step="upgrade" />
36 <step id="backupwhere" nextstep="backup">
37 <text value="Where do you want to backup your settings?" />
38 <list type="dynamic" source="listDevices" evaluation="deviceSelectionMade" onselect="deviceSelectionMoved" />
41 <step id="backup" nextstep="backupresult">
42 <text value="You have chosen to backup your settings. Please press OK to start the backup now." />
43 <config screen="BackupScreen" module="Plugins.SystemPlugins.SoftwareManager.BackupRestore" type="ConfigList" />
44 <code pos="after" async="yes">
45 self.currStep = self.getStepWithID('backupresult')
50 <step id="backupresult" nextstep="upgrade">
52 from Plugins.SystemPlugins.SoftwareManager.ImageWizard import checkBackupFile
53 self.backuppath = checkBackupFile()
54 self.condition = (self.backuppath is True)
56 <text value="Your backup succeeded. We will now continue to explain the further upgrade process." />
59 <step id="backupresult" nextstep="backupwhere">
61 from Plugins.SystemPlugins.SoftwareManager.ImageWizard import checkBackupFile
62 self.backuppath = checkBackupFile()
63 self.condition = (self.backuppath is False)
65 <text value="The backup failed. Please choose a different backup location." />
68 <step id="restore" nextstep="backupresult">
69 <text value="You have chosen to restore your settings. Enigma2 will restart after restore. Please press OK to start the restore now." />
70 <config screen="RestoreScreen" module="Plugins.SystemPlugins.SoftwareManager.BackupRestore" type="ConfigList" />
73 <step id="upgradehow">
74 <text value="The wizard can backup your current settings. Do you want to do a backup now?" />
76 <listentry caption="Install a new image with your web browser" step="upgrade" />
77 <listentry caption="Install a new image with a USB stick" step="upgradeUSB" />
82 <text value="You need a PC connected to your dreambox. If you need further instructions, please visit the website http://www.dm7025.de.\nYour dreambox will now be halted. After you have performed the update instructions from the website, your new firmware will ask you to restore your settings." />
84 <listentry caption="Yes, perform a shutdown now." step="shutdown" />
85 <listentry caption="No, do nothing." step="end" />
89 <step id="shutdown" nextstep="shutdown">
91 from enigma import quitMainloop
94 <text value="Your dreambox is shutting down. Please stand by..." />
97 <step id="end" laststep="true">
99 self.condition = self.isLastWizard
101 <text value="The wizard is finished now." />