summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/base/bootloaderinstallbase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/base/bootloaderinstallbase.cpp')
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstallbase.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/rbutil/rbutilqt/base/bootloaderinstallbase.cpp b/rbutil/rbutilqt/base/bootloaderinstallbase.cpp
index 3a94180aab..cf8b9e12fd 100644
--- a/rbutil/rbutilqt/base/bootloaderinstallbase.cpp
+++ b/rbutil/rbutilqt/base/bootloaderinstallbase.cpp
@@ -29,6 +29,7 @@
29#include "bootloaderinstallchinachip.h" 29#include "bootloaderinstallchinachip.h"
30#include "bootloaderinstallams.h" 30#include "bootloaderinstallams.h"
31#include "bootloaderinstalltcc.h" 31#include "bootloaderinstalltcc.h"
32#include "bootloaderinstallmpio.h"
32#include "utils.h" 33#include "utils.h"
33 34
34#if defined(Q_OS_MACX) 35#if defined(Q_OS_MACX)
@@ -64,6 +65,9 @@ BootloaderInstallBase* BootloaderInstallBase::createBootloaderInstaller(QObject*
64 else if(type == "tcc") { 65 else if(type == "tcc") {
65 return new BootloaderInstallTcc(parent); 66 return new BootloaderInstallTcc(parent);
66 } 67 }
68 else if(type == "mpio") {
69 return new BootloaderInstallMpio(parent);
70 }
67 else { 71 else {
68 return NULL; 72 return NULL;
69 } 73 }
@@ -212,7 +216,7 @@ QString BootloaderInstallBase::postinstallHints(QString model)
212 "<li>After the firmware has been updated reboot your player.</li>"); 216 "<li>After the firmware has been updated reboot your player.</li>");
213 } 217 }
214 if(model == "iaudiox5" || model == "iaudiom5" 218 if(model == "iaudiox5" || model == "iaudiom5"
215 || model == "iaudiox5v" || model == "iaudiom3") { 219 || model == "iaudiox5v" || model == "iaudiom3" || model == "mpioh200") {
216 hint = true; 220 hint = true;
217 msg += tr("<li>Turn the player off</li>" 221 msg += tr("<li>Turn the player off</li>"
218 "<li>Insert the charger</li>"); 222 "<li>Insert the charger</li>");
@@ -224,7 +228,6 @@ QString BootloaderInstallBase::postinstallHints(QString model)
224 "<li>Toggle the battery switch on the player</li>" 228 "<li>Toggle the battery switch on the player</li>"
225 "<li>Hold <i>Power</i> to boot into Rockbox</li>"); 229 "<li>Hold <i>Power</i> to boot into Rockbox</li>");
226 } 230 }
227
228 msg += "</ol>"; 231 msg += "</ol>";
229 msg += tr("<p><b>Note:</b> You can safely install other parts first, but " 232 msg += tr("<p><b>Note:</b> You can safely install other parts first, but "
230 "the above steps are <b>required</b> to finish the installation!</p>"); 233 "the above steps are <b>required</b> to finish the installation!</p>");