-rw-r--r-- | noncore/tools/formatter/formatter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/tools/formatter/formatter.cpp b/noncore/tools/formatter/formatter.cpp index ed0ced1..46dc01c 100644 --- a/noncore/tools/formatter/formatter.cpp +++ b/noncore/tools/formatter/formatter.cpp @@ -466,24 +466,27 @@ QString FormatterApp::getFileSystemType(const QString ¤tText) { // 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"; #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); |