[PC-BSD Commits] r2443 - pcbsd/trunk/PCInstall
svn at pcbsd.org
svn at pcbsd.org
Thu Jul 24 08:50:46 PDT 2008
Author: kris
Date: 2008-07-24 08:50:46 -0700 (Thu, 24 Jul 2008)
New Revision: 2443
Modified:
pcbsd/trunk/PCInstall/pcinstall.cpp
Log:
Fixed up the installer to show the right partition file system type in the advanced menu
Modified: pcbsd/trunk/PCInstall/pcinstall.cpp
===================================================================
--- pcbsd/trunk/PCInstall/pcinstall.cpp 2008-07-24 15:40:08 UTC (rev 2442)
+++ pcbsd/trunk/PCInstall/pcinstall.cpp 2008-07-24 15:50:46 UTC (rev 2443)
@@ -1639,7 +1639,7 @@
switch( i ) {
case 0:
PartLetter = "a";
- Type = "UFS";
+ Type = "UFS2";
break;
case 1:
PartLetter = "b";
@@ -1647,19 +1647,19 @@
break;
case 2:
PartLetter = "e";
- Type = "UFS";
+ Type = comboFileSystem->currentText();
break;
case 3:
PartLetter = "f";
- Type = "UFS";
+ Type = comboFileSystem->currentText();
break;
case 4:
PartLetter = "g";
- Type = "UFS";
+ Type = comboFileSystem->currentText();
break;
case 5:
PartLetter = "h";
- Type = "UFS";
+ Type = comboFileSystem->currentText();
break;
}
More information about the Commits
mailing list