Changeset 2810
- Timestamp:
- 09/23/08 07:59:38 (18 months ago)
- Location:
- pcbsd
- Files:
-
- 2 modified
-
branches/7.0/PCInstall/pcinstall.cpp (modified) (1 diff)
-
trunk/PCInstall/pcinstall.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/branches/7.0/PCInstall/pcinstall.cpp
r2773 r2810 1043 1043 1044 1044 1045 1046 1047 // Create a fdisk config file for the selected partition 1048 QFile file( "/tmp/fdiskconfig" ); 1049 if ( file.open( IO_WriteOnly ) ) { 1050 QTextStream stream( &file ); 1051 stream << "p\t" << tmp << "\t165\t" << PartitionStartBlk[PartNum] << "\t" << PartitionTotalBlk[PartNum]; 1052 file.close(); 1053 } 1054 1055 // QMessageBox::warning( this, "PCBSD Installer", "running fdisk", "Retry", "Quit", 0, 0, 1 ); 1056 1045 // Now run the FormatPartition.sh script to set this partition type to 165(FBSD) 1057 1046 textFileProgress->setText(tr("Running fdisk on ") + RootPartition); 1058 1047 installProgress->setProgress(2); -
pcbsd/trunk/PCInstall/pcinstall.cpp
r2767 r2810 1043 1043 1044 1044 1045 1046 1047 // Create a fdisk config file for the selected partition 1048 QFile file( "/tmp/fdiskconfig" ); 1049 if ( file.open( IO_WriteOnly ) ) { 1050 QTextStream stream( &file ); 1051 stream << "p\t" << tmp << "\t165\t" << PartitionStartBlk[PartNum] << "\t" << PartitionTotalBlk[PartNum]; 1052 file.close(); 1053 } 1054 1055 // QMessageBox::warning( this, "PCBSD Installer", "running fdisk", "Retry", "Quit", 0, 0, 1 ); 1056 1045 // Now run the FormatPartition.sh script to set this partition type to 165(FBSD) 1057 1046 textFileProgress->setText(tr("Running fdisk on ") + RootPartition); 1058 1047 installProgress->setProgress(2);
