[PC-BSD Commits] r4074 - pcbsd/trunk/PCInstall
svn at pcbsd.org
svn at pcbsd.org
Tue Jun 9 13:48:19 PDT 2009
Author: kris
Date: 2009-06-09 13:48:19 -0700 (Tue, 09 Jun 2009)
New Revision: 4074
Modified:
pcbsd/trunk/PCInstall/pcinstall.cpp
Log:
Setup '/' to only require 200MB of space now, since our LOCALBASE is really on /usr
Modified: pcbsd/trunk/PCInstall/pcinstall.cpp
===================================================================
--- pcbsd/trunk/PCInstall/pcinstall.cpp 2009-06-09 19:58:24 UTC (rev 4073)
+++ pcbsd/trunk/PCInstall/pcinstall.cpp 2009-06-09 20:48:19 UTC (rev 4074)
@@ -1972,9 +1972,9 @@
CheckMB = Blocks.toLongLong();
// Check if we are trying to resize / to less than 10GB
- if ( listViewSlices->currentItem()->text(1) == "/" && CheckMB < 10000 )
+ if ( listViewSlices->currentItem()->text(1) == "/" && CheckMB < 200 )
{
- QMessageBox::information( this, tr("DiskLabel Error:"), tr("The '/' partition must be a minimum of 10GB.") );
+ QMessageBox::information( this, tr("DiskLabel Error:"), tr("The '/' partition must be a minimum of 200MB.") );
return;
}
SliceMB[CurrentEditLabel] = Blocks;
More information about the Commits
mailing list