summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-10-22 02:17:18 (UTC)
committer llornkcor <llornkcor>2002-10-22 02:17:18 (UTC)
commit59c92dc2a1defbece541663c76a9da82a59cbaa9 (patch) (side-by-side diff)
tree905d4b4ab9a97298a56ccdea00359898eaa8bbd0
parenta19864da233f2d434d96c85b4f4b1978bab5d30d (diff)
downloadopie-59c92dc2a1defbece541663c76a9da82a59cbaa9.zip
opie-59c92dc2a1defbece541663c76a9da82a59cbaa9.tar.gz
opie-59c92dc2a1defbece541663c76a9da82a59cbaa9.tar.bz2
gak 2
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/formatter/formatter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/tools/formatter/formatter.cpp b/noncore/tools/formatter/formatter.cpp
index 46dc01c..9192099 100644
--- a/noncore/tools/formatter/formatter.cpp
+++ b/noncore/tools/formatter/formatter.cpp
@@ -462,35 +462,35 @@ QString FormatterApp::getFileSystemType(const QString &currentText) {
for ( QStringList::Iterator it = fileSystemTypeList.begin(); it != fileSystemTypeList.end(); ++it ) {
QString temp = (*it);
if( temp.find( currentText,0,TRUE) != -1) {
return temp.right( temp.length() - temp.find("::",0,TRUE) - 2);
// qDebug(fsType);
}
}
return "";
}
bool FormatterApp::doFsck() {
Output *outDlg;
QString selectedDevice;
#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX)
selectedDevice = deviceComboBox->currentText();
-
- QString umountS = "umount -v "+selectedDevice+" 2>&1";
- QString remountS = "mount -v "+selectedDevice+" 2>&1";
+ QString mountPoint = mountPointLineEdit->text();
+ QString umountS = "umount -v "+mountPoint+" 2>&1";
+ QString remountS = "mount -v "+mountPoint+" 2>&1";
#else
// for testing
// currentText = diskDevice = "/dev/fd0";
QString umountS = "umount -v /floppy 2>&1";
QString remountS = "mount -v /floppy 2>&1";
selectedDevice ="/dev/fd0";
#endif
QString fsType = getFileSystemType((const QString &)selectedDevice);
QString cmd;
qDebug( selectedDevice +" "+ fsType);
if(fsType == "vfat") cmd = "dosfsck -vy ";
if(fsType == "ext2") cmd = "e2fsck -cpvy ";
cmd += selectedDevice + " 2>&1";