Changeset 2810

Show
Ignore:
Timestamp:
09/23/08 07:59:38 (18 months ago)
Author:
kris
Message:

Removed some old code from our installer GUI, now we let fdisk sort out the partition
boundaries in PCBSD.FormatPartition?.sh script

Location:
pcbsd
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pcbsd/branches/7.0/PCInstall/pcinstall.cpp

    r2773 r2810  
    10431043             
    10441044             
    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) 
    10571046        textFileProgress->setText(tr("Running fdisk on ") + RootPartition); 
    10581047        installProgress->setProgress(2); 
  • pcbsd/trunk/PCInstall/pcinstall.cpp

    r2767 r2810  
    10431043             
    10441044             
    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) 
    10571046        textFileProgress->setText(tr("Running fdisk on ") + RootPartition); 
    10581047        installProgress->setProgress(2);