summaryrefslogtreecommitdiff
path: root/noncore/settings
authorllornkcor <llornkcor>2002-12-17 01:43:27 (UTC)
committer llornkcor <llornkcor>2002-12-17 01:43:27 (UTC)
commit2c338cc2ed1815c243cc88ed4506d1de184c19e0 (patch) (side-by-side diff)
tree28f58530a213256bd05fca4edeacc9a7e8810db9 /noncore/settings
parentcf373af175eb2d017acc6114e492452f1b4d2560 (diff)
downloadopie-2c338cc2ed1815c243cc88ed4506d1de184c19e0.zip
opie-2c338cc2ed1815c243cc88ed4506d1de184c19e0.tar.gz
opie-2c338cc2ed1815c243cc88ed4506d1de184c19e0.tar.bz2
fix mtdblock string display
Diffstat (limited to 'noncore/settings') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sysinfo/storage.cpp18
1 files changed, 10 insertions, 8 deletions
diff --git a/noncore/settings/sysinfo/storage.cpp b/noncore/settings/sysinfo/storage.cpp
index 5d6cd1b..eb157ef 100644
--- a/noncore/settings/sysinfo/storage.cpp
+++ b/noncore/settings/sysinfo/storage.cpp
@@ -95,7 +95,8 @@ void StorageInfo::updateMounts()
QString fs = me->mnt_fsname;
if ( fs.left(7)=="/dev/hd" || fs.left(7)=="/dev/sd"
|| fs.left(8)=="/dev/mtd" || fs.left(9) == "/dev/mmcd"
- || fs.left(9) == "/dev/root" || fs.left(5) == "/ramfs" || fs.left(5) == "tmpfs" ) {
+ || fs.left(9) == "/dev/root" || fs.left(5) == "/ramfs"
+ || fs.left(5) == "tmpfs" ) {
n++;
curdisks.append(fs);
QString d = me->mnt_dir;
@@ -134,20 +135,21 @@ void StorageInfo::updateMounts()
humanname = tr( "CF Card: " );
else if ( humanname == "/dev/hda1" )
humanname = tr( "Hard Disk " );
+
else if ( humanname.left(9) == "/dev/mmcd" )
humanname = tr( "SD Card " );
+
else if ( humanname.left(7) == "/dev/hd" )
humanname = tr( "Hard Disk /dev/hd " );
+
else if ( humanname.left(7) == "/dev/sd" )
humanname = tr( "SCSI Hard Disk /dev/sd " );
- else if ( humanname == "/dev/mtdblock1" || humanname == "/dev/mtdblock/1" )
- humanname = tr( "Int. Storage " );
- else if ( humanname.left(14) == "/dev/mtdblock/" )
- humanname = tr( "Int. Storage /dev/mtdblock/ " );
- else if ( humanname.left(13) == "/dev/mtdblock" )
- humanname = tr( "Int. Storage /dev/mtdblock " );
- else if ( humanname.left(9) == "/dev/root" )
+
+ else if ( humanname == "/dev/mtdblock1"
+ || humanname.left(13) == "/dev/mtdblock"
+ || humanname.left(9) == "/dev/root")
humanname = tr( "Int. Storage " );
+
else if ( humanname.left(5) == "tmpfs" )
humanname = tr( "RAM disk" );
// etc.