Image backup apollo Part #7

- Add image backup to menu 'Software Update'


Origin commit data
------------------
Commit: c48a8cf695
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-09-26 (Thu, 26 Sep 2013)
This commit is contained in:
Michael Liebmann
2013-09-26 02:30:29 +02:00
parent 3e016e5e81
commit 3f19c34e16
5 changed files with 12 additions and 0 deletions

View File

@@ -1119,6 +1119,7 @@ menu.hint_sleeptimer Zeitschaltuhr auf Ihrer Box aktivieren\nDie Box fährt dann
menu.hint_soft_restart Neustarten von Neutrino-HD, ohne die Box neu zu starten menu.hint_soft_restart Neustarten von Neutrino-HD, ohne die Box neu zu starten
menu.hint_softupdate_check Im Internet nach verfügbaren Updates suchen, herunterladen und installieren menu.hint_softupdate_check Im Internet nach verfügbaren Updates suchen, herunterladen und installieren
menu.hint_softupdate_check_local Lokal nach verfügbaren Updates suchen und installieren menu.hint_softupdate_check_local Lokal nach verfügbaren Updates suchen und installieren
menu.hint_softupdate_createimage_menu Sicherung der aktuellen Software inklusive aller Einstellungen
menu.hint_softupdate_expert Einzelne Partitionen aus dem Flash lesen bzw. in den Flash schreiben menu.hint_softupdate_expert Einzelne Partitionen aus dem Flash lesen bzw. in den Flash schreiben
menu.hint_softupdate_expert_read Einzelne Partitionen (U-Boot, Splash, Kernel, SystemFS) aus dem Flash lesen menu.hint_softupdate_expert_read Einzelne Partitionen (U-Boot, Splash, Kernel, SystemFS) aus dem Flash lesen
menu.hint_softupdate_expert_write Einzelne Partitionen (Splash, Kernel, SystemFS) in den Flash schreiben menu.hint_softupdate_expert_write Einzelne Partitionen (Splash, Kernel, SystemFS) in den Flash schreiben

View File

@@ -1119,6 +1119,7 @@ menu.hint_sleeptimer Set timer to put your box\nin sleep mode
menu.hint_soft_restart Restart Neutrino-HD without reboot menu.hint_soft_restart Restart Neutrino-HD without reboot
menu.hint_softupdate_check Check online update, download and flash firmware menu.hint_softupdate_check Check online update, download and flash firmware
menu.hint_softupdate_check_local Select and flash firmware from local file menu.hint_softupdate_check_local Select and flash firmware from local file
menu.hint_softupdate_createimage_menu Backup of current software, including all settings
menu.hint_softupdate_expert Separate partitions from the flash read / write to the flash menu.hint_softupdate_expert Separate partitions from the flash read / write to the flash
menu.hint_softupdate_expert_read Separate partitions (U-Boot, Splash, Kernel, SystemFS) from the flash read menu.hint_softupdate_expert_read Separate partitions (U-Boot, Splash, Kernel, SystemFS) from the flash read
menu.hint_softupdate_expert_write Separate partitions (Splash, Kernel, SystemFS) write to the flash menu.hint_softupdate_expert_write Separate partitions (Splash, Kernel, SystemFS) write to the flash

View File

@@ -112,6 +112,14 @@ int CSoftwareUpdate::showSoftwareUpdate()
mf->setHint("", LOCALE_MENU_HINT_SOFTUPDATE_EXPERT); mf->setHint("", LOCALE_MENU_HINT_SOFTUPDATE_EXPERT);
softUpdate.addItem(mf); softUpdate.addItem(mf);
#ifdef BOXMODEL_APOLLO
softUpdate.addItem(GenericMenuSeparatorLine);
mf = new CMenuForwarder(LOCALE_FLASHUPDATE_CREATEIMAGE_MENU, true, NULL, new CFlashExpertSetup(), NULL, CRCInput::convertDigitToKey(1));
mf->setHint("", LOCALE_MENU_HINT_SOFTUPDATE_CREATEIMAGE_MENU);
softUpdate.addItem(mf);
#endif
int res = softUpdate.exec (NULL, ""); int res = softUpdate.exec (NULL, "");
return res; return res;
} }

View File

@@ -1146,6 +1146,7 @@ typedef enum
LOCALE_MENU_HINT_SOFT_RESTART, LOCALE_MENU_HINT_SOFT_RESTART,
LOCALE_MENU_HINT_SOFTUPDATE_CHECK, LOCALE_MENU_HINT_SOFTUPDATE_CHECK,
LOCALE_MENU_HINT_SOFTUPDATE_CHECK_LOCAL, LOCALE_MENU_HINT_SOFTUPDATE_CHECK_LOCAL,
LOCALE_MENU_HINT_SOFTUPDATE_CREATEIMAGE_MENU,
LOCALE_MENU_HINT_SOFTUPDATE_EXPERT, LOCALE_MENU_HINT_SOFTUPDATE_EXPERT,
LOCALE_MENU_HINT_SOFTUPDATE_EXPERT_READ, LOCALE_MENU_HINT_SOFTUPDATE_EXPERT_READ,
LOCALE_MENU_HINT_SOFTUPDATE_EXPERT_WRITE, LOCALE_MENU_HINT_SOFTUPDATE_EXPERT_WRITE,

View File

@@ -1146,6 +1146,7 @@ const char * locale_real_names[] =
"menu.hint_soft_restart", "menu.hint_soft_restart",
"menu.hint_softupdate_check", "menu.hint_softupdate_check",
"menu.hint_softupdate_check_local", "menu.hint_softupdate_check_local",
"menu.hint_softupdate_createimage_menu",
"menu.hint_softupdate_expert", "menu.hint_softupdate_expert",
"menu.hint_softupdate_expert_read", "menu.hint_softupdate_expert_read",
"menu.hint_softupdate_expert_write", "menu.hint_softupdate_expert_write",