From 2e8c2c480df5538186e2fd4ee3db5d9453a06ad2 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Sun, 13 May 2018 17:28:06 +0200 Subject: [PATCH] Add log message --- addon/lib/rmupdate.tcl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/addon/lib/rmupdate.tcl b/addon/lib/rmupdate.tcl index 9b985ed..35e8160 100644 --- a/addon/lib/rmupdate.tcl +++ b/addon/lib/rmupdate.tcl @@ -99,6 +99,7 @@ proc ::rmupdate::i18n {str} { if {$str == "Addon %s successfully installed."} { return "Addon %s erfolgreich installiert." } if {$str == "Addon %s successfully uninstalled."} { return "Addon %s erfolgreich deinstalliert." } if {$str == "Using recovery system to update firmware."} { return "Verwende Recovery-System für Firmware-Update." } + if {$str == "Recovery system will be started now, which will perform the firmware update.\nThis process takes some minutes, please be patient..."} { return "Das Recovery-System wird nun gestartet und das Firmware-Update durchgeführt.\nBitte haben Sie ein wenig Geduld, dieser Vorgang benötigt einige Minuten..." } } return $str } @@ -1337,7 +1338,11 @@ proc ::rmupdate::install_firmware {{download_url ""} {version ""} {lang ""} {reb set_running_installation "" if {$reboot && !$dryrun} { - write_install_log "System will reboot now." + if {$use_recovery} { + write_install_log "Recovery system will be started now, which will perform the firmware update.\nThis process takes some minutes, please be patient..." + } else { + write_install_log "System will reboot now." + } } after 5000