author | llornkcor <llornkcor> | 2002-05-28 16:58:47 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-05-28 16:58:47 (UTC) |
commit | 9ec323fe6ae0f1f737749d3d63ffaa4a04c55973 (patch) (side-by-side diff) | |
tree | a1e65a6c72d131157728e93fbefc587f962da28d | |
parent | f1f06e4cf8ec641852d1d464d8fa8c95b9d2fcb5 (diff) | |
download | opie-9ec323fe6ae0f1f737749d3d63ffaa4a04c55973.zip opie-9ec323fe6ae0f1f737749d3d63ffaa4a04c55973.tar.gz opie-9ec323fe6ae0f1f737749d3d63ffaa4a04c55973.tar.bz2 |
fixed bug where not knowing /dev/ramfs
-rw-r--r-- | library/storage.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/library/storage.cpp b/library/storage.cpp index a4c96be..b4d743e 100644 --- a/library/storage.cpp +++ b/library/storage.cpp @@ -105,5 +105,6 @@ void StorageInfo::update() 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(8)=="/dev/mtd" || fs.left(9) == "/dev/mmcd" + || fs.left(8)=="/dev/ram") { n++; @@ -154,4 +155,6 @@ void StorageInfo::update() else if ( disk.left(13) == "/dev/mtdblock" ) humanname = tr("Internal Storage") + " " + humanname.mid(13); + else if ( disk.left(10) == "/dev/ramfs" ) + humanname = tr("Internal Storage") + " " + humanname.mid(10); FileSystem *fs = new FileSystem( disk, *fsit, humanname, removable, opts ); mFileSystems.append( fs ); |