From d1098f31004e8a751f304062a6252baacb83b4f9 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sun, 20 Mar 2011 10:26:05 +0000 Subject: Fix MTP detection only working on e200v1. Autodetection only showed an MTP device error for e200v1 and an unspecified error for all other players (except if the detected player is an Ipod, in which case the error indicates a WinPod). Consider all non-Ipod errors as MTP error. Fix wrong MTP USB ID for e200v1 which made that detection fail even for e200v1. Should fix FS#11563. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29621 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/rbutilqt/configure.cpp | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'rbutil/rbutilqt/configure.cpp') diff --git a/rbutil/rbutilqt/configure.cpp b/rbutil/rbutilqt/configure.cpp index d775eec172..8bfa20e6a0 100644 --- a/rbutil/rbutilqt/configure.cpp +++ b/rbutil/rbutilqt/configure.cpp @@ -631,19 +631,21 @@ void Config::autodetect() if(!detector.errdev().isEmpty()) { QString text; - if(detector.errdev() == "sansae200") - text = tr("Sansa e200 in MTP mode found!\n" - "You need to change your player to MSC mode for installation. "); - if(detector.errdev() == "h10") - text = tr("H10 20GB in MTP mode found!\n" - "You need to change your player to UMS mode for installation. "); if(SystemInfo::platformValue(detector.errdev(), - SystemInfo::CurBootloaderMethod) == "ipod") + SystemInfo::CurBootloaderMethod) == "ipod") { text = tr("%1 \"MacPod\" found!\n" "Rockbox needs a FAT formatted Ipod (so-called \"WinPod\") " "to run. ").arg(SystemInfo::platformValue( detector.errdev(), SystemInfo::CurName).toString()); - text += tr("Unless you changed this installation will fail!"); + } + // treat all other errors as MTP device for now. + else { + text = tr("%1 in MTP mode found!\n" + "You need to change your player to MSC mode for installation. ") + .arg(SystemInfo::platformValue(detector.errdev(), + SystemInfo::CurName).toString()); + } + text += tr("Until you change this installation will fail!"); QMessageBox::critical(this, tr("Fatal error"), text, QMessageBox::Ok); return; -- cgit