summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-06-29 13:20:37 (UTC)
committer llornkcor <llornkcor>2002-06-29 13:20:37 (UTC)
commit881940465ce6bf9572a46e1aab850ec8e510c54b (patch) (side-by-side diff)
tree2d896e808d728a241d1c7b2e65a9671650644586
parent83c99614bf6d64601c6845f8dc9458d6c7aa410c (diff)
downloadopie-881940465ce6bf9572a46e1aab850ec8e510c54b.zip
opie-881940465ce6bf9572a46e1aab850ec8e510c54b.tar.gz
opie-881940465ce6bf9572a46e1aab850ec8e510c54b.tar.bz2
added z ramfs
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/storage.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/storage.cpp b/library/storage.cpp
index 8346e82..d6a91cf 100644
--- a/library/storage.cpp
+++ b/library/storage.cpp
@@ -139,24 +139,26 @@ void StorageInfo::update()
if ( isCF(disk) ) {
humanname = tr("CF Card");
removable = TRUE;
} else if ( disk == "/dev/hda1" ) {
humanname = tr("Hard Disk");
} else if ( disk.left(9) == "/dev/mmcd" ) {
humanname = tr("SD Card");
removable = TRUE;
} else if ( disk.left(7) == "/dev/hd" )
humanname = tr("Hard Disk") + " " + humanname.mid(7);
else if ( disk.left(7) == "/dev/sd" )
humanname = tr("SCSI Hard Disk") + " " + humanname.mid(7);
+ else if ( disk.left(15) == "/dev/mtdblock6/" ) //openzaurus ramfs
+ humanname = tr("Ram FS") + " " + humanname.mid(15);
else if ( disk == "/dev/mtdblock1" || humanname == "/dev/mtdblock/1" )
humanname = tr("Internal Storage");
else if ( disk.left(14) == "/dev/mtdblock/" )
humanname = tr("Internal Storage") + " " + humanname.mid(14);
else if ( disk.left(13) == "/dev/mtdblock" )
humanname = tr("Internal Storage") + " " + humanname.mid(13);
else if ( disk.left(5) == "tmpfs" ) //ipaqs /mnt/ramfs
humanname = tr("Ram FS") + " " + humanname.mid(5);
FileSystem *fs = new FileSystem( disk, *fsit, humanname, removable, opts );
mFileSystems.append( fs );
}
emit disksChanged();