summaryrefslogtreecommitdiff
path: root/rbutil
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2012-02-22 23:09:59 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2012-02-22 23:09:59 +0100
commitdc9bd859fe33e829c6e8fd3c381f6a6d657032fb (patch)
tree8d05089acc46fb1a0b647c4bc705fcca6e880a3d /rbutil
parent1a4a934d5eee53d16c86014e99c2f98914b13ebf (diff)
downloadrockbox-dc9bd859fe33e829c6e8fd3c381f6a6d657032fb.tar.gz
rockbox-dc9bd859fe33e829c6e8fd3c381f6a6d657032fb.zip
Remove duplicate entry from postinstall hint.
The Fuze+ has its own "disconnect player" message, so don't show the generic one here. Change-Id: Ibecac46d2434cb2c2b0369ff87649093252594ef
Diffstat (limited to 'rbutil')
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallbase.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/rbutil/rbutilqt/base/bootloaderinstallbase.cpp b/rbutil/rbutilqt/base/bootloaderinstallbase.cpp
index 7941f24309..aa3a977d16 100644
--- a/rbutil/rbutilqt/base/bootloaderinstallbase.cpp
+++ b/rbutil/rbutilqt/base/bootloaderinstallbase.cpp
@@ -209,10 +209,8 @@ QString BootloaderInstallBase::postinstallHints(QString model)
209 "following steps manually:"); 209 "following steps manually:");
210 210
211 msg += "<ol>"; 211 msg += "<ol>";
212 msg += tr("<li>Safely remove your player.</li>"); 212 if(model != "sansafuzeplus") {
213 if(model == "sansafuzeplus") { 213 msg += tr("<li>Safely remove your player.</li>");
214 msg += tr("<li>Remove any previously inserted microSD card</li>");
215 hint = true;
216 } 214 }
217 if(model == "h100" || model == "h120" || model == "h300" || 215 if(model == "h100" || model == "h120" || model == "h300" ||
218 model == "ondavx747") { 216 model == "ondavx747") {
@@ -228,6 +226,7 @@ QString BootloaderInstallBase::postinstallHints(QString model)
228 } 226 }
229 if(model == "sansafuzeplus") { 227 if(model == "sansafuzeplus") {
230 hint = true; 228 hint = true;
229 msg += tr("<li>Remove any previously inserted microSD card</li>");
231 msg += tr("<li>Disconnect your player. The player will reboot and " 230 msg += tr("<li>Disconnect your player. The player will reboot and "
232 "perform an update of the original firmware. " 231 "perform an update of the original firmware. "
233 "Please refer to your players manual on details.<br/>" 232 "Please refer to your players manual on details.<br/>"