SVN: PLDLiveInstaller/trunk/PLDLiveInstaller.cpp

shadzik shadzik at pld-linux.org
Thu Jan 20 14:21:18 CET 2011


Author: shadzik
Date: Thu Jan 20 14:21:18 2011
New Revision: 12063

Modified:
   PLDLiveInstaller/trunk/PLDLiveInstaller.cpp
Log:
- use sfdisk_helper


Modified: PLDLiveInstaller/trunk/PLDLiveInstaller.cpp
==============================================================================
--- PLDLiveInstaller/trunk/PLDLiveInstaller.cpp	(original)
+++ PLDLiveInstaller/trunk/PLDLiveInstaller.cpp	Thu Jan 20 14:21:18 2011
@@ -293,13 +293,11 @@
   "</p></html>");
   QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
   QStringList args, status;
-  args.append("--no-reread");
-  args.append("-I");
-  args.append("/usr/share/pldliveinstaller/default.dump");
   args.append(device);
+  args.append("/usr/share/pldliveinstaller/default.table");
   qDebug() << args;
   QProcess * sfdisk = new QProcess(this);
-  sfdisk->start("sfdisk", args);
+  sfdisk->start("/usr/share/pldliveinstaller/sfdisk_helper", args);
   while(sfdisk->waitForReadyRead(-1))
   {
 	  status = QString::fromLatin1(sfdisk->readAll()).split("\n");


More information about the pld-cvs-commit mailing list