mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-10 05:32:40 -05:00
Add note to boot OF for update with OF on uninstallation.
Change-Id: Ia2955ecc9616eaa91644970ef81320e23a7970a0
This commit is contained in:
parent
c3c2c919d8
commit
43b1ccffcc
2 changed files with 7 additions and 2 deletions
|
|
@ -22,3 +22,5 @@ Version 1.4
|
||||||
|
|
||||||
Version 1.4.1
|
Version 1.4.1
|
||||||
* Fix crash on detecting player in MTP mode.
|
* Fix crash on detecting player in MTP mode.
|
||||||
|
* Extend hint when uninstallation requires reinstalling the Original Firmware.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -539,8 +539,11 @@ void RbUtilQt::uninstallBootloader(void)
|
||||||
|
|
||||||
BootloaderInstallBase::BootloaderType currentbl = bl->installed();
|
BootloaderInstallBase::BootloaderType currentbl = bl->installed();
|
||||||
if((bl->capabilities() & BootloaderInstallBase::Uninstall) == 0) {
|
if((bl->capabilities() & BootloaderInstallBase::Uninstall) == 0) {
|
||||||
logger->addItem(tr("Rockbox Utility can not uninstall the bootloader on this target. "
|
logger->addItem(tr("Rockbox Utility can not uninstall the bootloader on your player. "
|
||||||
"Try a normal firmware update to remove the booloader."), LOGERROR);
|
"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();
|
logger->setFinished();
|
||||||
delete bl;
|
delete bl;
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue