[PC-BSD Commits] r2082 - pcbsd/trunk/PCInstall
svn at pcbsd.org
svn at pcbsd.org
Tue Jun 10 09:38:42 PDT 2008
Author: kris
Date: 2008-06-10 09:38:41 -0700 (Tue, 10 Jun 2008)
New Revision: 2082
Modified:
pcbsd/trunk/PCInstall/pcinstall.ui.h
Log:
Fixed a bug in PCInstall, UFS partition needs to be on "a"
Modified: pcbsd/trunk/PCInstall/pcinstall.ui.h
===================================================================
--- pcbsd/trunk/PCInstall/pcinstall.ui.h 2008-06-10 16:12:44 UTC (rev 2081)
+++ pcbsd/trunk/PCInstall/pcinstall.ui.h 2008-06-10 16:38:41 UTC (rev 2082)
@@ -1660,12 +1660,12 @@
// Check if we are using ZFS and create a 100MB /bootdir slice
if ( comboFileSystem->currentItem() == 3 )
{
- SliceMB[0] = tmp.setNum((TotalSliceMB.toLongLong() - 712));
- SliceMnt[0] = "/";
+ SliceMB[0] = "200";
+ SliceMnt[0] = "/bootdir";
SliceMB[1] = "512";
SliceMnt[1] = "SWAP";
- SliceMB[2] = "200";
- SliceMnt[2] = "/bootdir";
+ SliceMB[2] = tmp.setNum((TotalSliceMB.toLongLong() - 712));
+ SliceMnt[2] = "/";
SliceMB[3] = "";
SliceMnt[3] = "";
SliceMB[4] = "";
More information about the Commits
mailing list