summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/base/autodetection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/base/autodetection.cpp')
-rw-r--r--rbutil/rbutilqt/base/autodetection.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/rbutil/rbutilqt/base/autodetection.cpp b/rbutil/rbutilqt/base/autodetection.cpp
index 6427d929c4..0206502202 100644
--- a/rbutil/rbutilqt/base/autodetection.cpp
+++ b/rbutil/rbutilqt/base/autodetection.cpp
@@ -43,12 +43,12 @@ bool Autodetection::detect()
43 43
44 // Try detection via rockbox.info / rbutil.log 44 // Try detection via rockbox.info / rbutil.log
45 QStringList mounts = Utils::mountpoints(); 45 QStringList mounts = Utils::mountpoints();
46 qDebug() << "[Autodetect] paths to check:" << mounts;
46 47
47 for(int i=0; i< mounts.size();i++) 48 for(int i=0; i< mounts.size();i++)
48 { 49 {
49 // do the file checking 50 // do the file checking
50 QDir dir(mounts.at(i)); 51 QDir dir(mounts.at(i));
51 qDebug() << "[Autodetect] paths to check:" << mounts;
52 if(dir.exists()) 52 if(dir.exists())
53 { 53 {
54 // check logfile first. 54 // check logfile first.
@@ -205,9 +205,9 @@ bool Autodetection::detectUsb()
205 // usbids holds the mapping in the form 205 // usbids holds the mapping in the form
206 // ((VID<<16)|(PID)), targetname 206 // ((VID<<16)|(PID)), targetname
207 // the ini file needs to hold the IDs as hex values. 207 // the ini file needs to hold the IDs as hex values.
208 QMap<int, QString> usbids = SystemInfo::usbIdMap(SystemInfo::MapDevice); 208 QMap<int, QStringList> usbids = SystemInfo::usbIdMap(SystemInfo::MapDevice);
209 QMap<int, QString> usberror = SystemInfo::usbIdMap(SystemInfo::MapError); 209 QMap<int, QStringList> usberror = SystemInfo::usbIdMap(SystemInfo::MapError);
210 QMap<int, QString> usbincompat = SystemInfo::usbIdMap(SystemInfo::MapIncompatible); 210 QMap<int, QStringList> usbincompat = SystemInfo::usbIdMap(SystemInfo::MapIncompatible);
211 211
212 // usb pid detection 212 // usb pid detection
213 QList<uint32_t> attached; 213 QList<uint32_t> attached;
@@ -216,12 +216,12 @@ bool Autodetection::detectUsb()
216 int i = attached.size(); 216 int i = attached.size();
217 while(i--) { 217 while(i--) {
218 if(usbids.contains(attached.at(i))) { 218 if(usbids.contains(attached.at(i))) {
219 m_device = usbids.value(attached.at(i)); 219 m_device = usbids.value(attached.at(i)).at(0);
220 qDebug() << "[USB] detected supported player" << m_device; 220 qDebug() << "[USB] detected supported player" << m_device;
221 return true; 221 return true;
222 } 222 }
223 if(usberror.contains(attached.at(i))) { 223 if(usberror.contains(attached.at(i))) {
224 m_errdev = usberror.value(attached.at(i)); 224 m_errdev = usberror.value(attached.at(i)).at(0);
225 qDebug() << "[USB] detected problem with player" << m_errdev; 225 qDebug() << "[USB] detected problem with player" << m_errdev;
226 return true; 226 return true;
227 } 227 }