summaryrefslogtreecommitdiff
path: root/rbutil
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil')
-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 5e03d1e6c3..d11122455c 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 5da792ffc1..b1ea041858 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;