Add note to boot OF for update with OF on uninstallation.

Change-Id: Ia2955ecc9616eaa91644970ef81320e23a7970a0
This commit is contained in:
Dominik Riebeling 2014-11-14 22:32:17 +01:00
parent c3c2c919d8
commit 43b1ccffcc
2 changed files with 7 additions and 2 deletions

View file

@ -22,3 +22,5 @@ Version 1.4
Version 1.4.1
* Fix crash on detecting player in MTP mode.
* Extend hint when uninstallation requires reinstalling the Original Firmware.

View file

@ -539,8 +539,11 @@ void RbUtilQt::uninstallBootloader(void)
BootloaderInstallBase::BootloaderType currentbl = bl->installed();
if((bl->capabilities() & BootloaderInstallBase::Uninstall) == 0) {
logger->addItem(tr("Rockbox Utility can not uninstall the bootloader on this target. "
"Try a normal firmware update to remove the booloader."), LOGERROR);
logger->addItem(tr("Rockbox Utility can not uninstall the bootloader on your player. "
"Please perform a firmware update using your player vendors "
"firmware update process."), LOGERROR);
logger->addItem(tr("Important: make sure to boot your player into the original "
"firmware before using the vendors firmware update process."), LOGERROR);
logger->setFinished();
delete bl;
return;