summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/ostorageinfo.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libopie2/opiecore/ostorageinfo.cpp b/libopie2/opiecore/ostorageinfo.cpp
index 8fcf5fc..6c7c138 100644
--- a/libopie2/opiecore/ostorageinfo.cpp
+++ b/libopie2/opiecore/ostorageinfo.cpp
@@ -47,41 +47,42 @@ QString OStorageInfo::cfPath()const
47 for (QListIterator<FileSystem> i( fileSystems() ); i.current(); ++i) 47 for (QListIterator<FileSystem> i( fileSystems() ); i.current(); ++i)
48 { 48 {
49 if ( (*i)->disk().left( 8 ) == "/dev/hda" ) 49 if ( (*i)->disk().left( 8 ) == "/dev/hda" )
50 { 50 {
51 r = (*i)->path(); 51 r = (*i)->path();
52 break; 52 break;
53 } 53 }
54 } 54 }
55 return r; 55 return r;
56} 56}
57 57
58QString OStorageInfo::sdPath()const 58QString OStorageInfo::sdPath()const
59{ 59{
60 QString r = ""; 60 QString r = "";
61 61
62 for (QListIterator<FileSystem> i( fileSystems() ); i.current(); ++i) 62 for (QListIterator<FileSystem> i( fileSystems() ); i.current(); ++i)
63 { 63 {
64 if ( (*i)->disk().left( 9 ) == "/dev/mmcd" ) 64 if ( (*i)->disk().left( 9 ) == "/dev/mmcd" )
65 { 65 {
66 r = (*i)->path(); 66 r = (*i)->path();
67 break; 67 break;
68 } 68 }
69 } 69 }
70 return r; 70 return r;
71} 71}
72 72
73QString OStorageInfo::mmcPath()const 73QString OStorageInfo::mmcPath()const
74{ 74{
75 QString r = ""; 75 QString r = "";
76 76
77 for (QListIterator<FileSystem> i( fileSystems() ); i.current(); ++i) 77 for (QListIterator<FileSystem> i( fileSystems() ); i.current(); ++i)
78 { 78 {
79 if ( (*i)->disk().left( 14 ) == "/dev/mmc/part1" ) 79 if ( (*i)->disk().left( 14 ) == "/dev/mmc/part1"||
80 (*i)->disk().left(11) == "/dev/mmcblk" )
80 { 81 {
81 r = (*i)->path(); 82 r = (*i)->path();
82 break; 83 break;
83 } 84 }
84 } 85 }
85 return r; 86 return r;
86} 87}
87 88