summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2014-11-14 22:32:17 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2015-05-02 16:52:13 +0200
commit43b1ccffcc2df42146bde053bb13e5168dfa2334 (patch)
treec33688f5e25ea242ccb95474edad225b4d2f3e77
parentc3c2c919d820c01cbad04e76ba329919f2827e8a (diff)
downloadrockbox-43b1ccffcc2df42146bde053bb13e5168dfa2334.zip
rockbox-43b1ccffcc2df42146bde053bb13e5168dfa2334.tar.gz
rockbox-43b1ccffcc2df42146bde053bb13e5168dfa2334.tar.bz2
rockbox-43b1ccffcc2df42146bde053bb13e5168dfa2334.tar.xz
Add note to boot OF for update with OF on uninstallation.
Change-Id: Ia2955ecc9616eaa91644970ef81320e23a7970a0
-rw-r--r--rbutil/rbutilqt/changelog.txt2
-rw-r--r--rbutil/rbutilqt/rbutilqt.cpp7
2 files changed, 7 insertions, 2 deletions
diff --git a/rbutil/rbutilqt/changelog.txt b/rbutil/rbutilqt/changelog.txt
index 5e03d1e..d111224 100644
--- a/rbutil/rbutilqt/changelog.txt
+++ b/rbutil/rbutilqt/changelog.txt
@@ -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.
+
diff --git a/rbutil/rbutilqt/rbutilqt.cpp b/rbutil/rbutilqt/rbutilqt.cpp
index 5da792f..b1ea041 100644
--- a/rbutil/rbutilqt/rbutilqt.cpp
+++ b/rbutil/rbutilqt/rbutilqt.cpp
@@ -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;