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 6c7c138..6a3646e 100644
--- a/libopie2/opiecore/ostorageinfo.cpp
+++ b/libopie2/opiecore/ostorageinfo.cpp
@@ -48,33 +48,34 @@ QString OStorageInfo::cfPath()const
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 (*i)->disk().left( 14 ) == "/dev/mmc/part1" )
65 { 66 {
66 r = (*i)->path(); 67 r = (*i)->path();
67 break; 68 break;
68 } 69 }
69 } 70 }
70 return r; 71 return r;
71} 72}
72 73
73QString OStorageInfo::mmcPath()const 74QString OStorageInfo::mmcPath()const
74{ 75{
75 QString r = ""; 76 QString r = "";
76 77
77 for (QListIterator<FileSystem> i( fileSystems() ); i.current(); ++i) 78 for (QListIterator<FileSystem> i( fileSystems() ); i.current(); ++i)
78 { 79 {
79 if ( (*i)->disk().left( 14 ) == "/dev/mmc/part1"|| 80 if ( (*i)->disk().left( 14 ) == "/dev/mmc/part1"||
80 (*i)->disk().left(11) == "/dev/mmcblk" ) 81 (*i)->disk().left(11) == "/dev/mmcblk" )