[PC-BSD Commits] r17353 - pcbsd/current/src-qt4/pc-installgui
svn at pcbsd.org
svn at pcbsd.org
Wed Jun 20 11:16:56 PDT 2012
Author: kris
Date: 2012-06-20 18:16:56 +0000 (Wed, 20 Jun 2012)
New Revision: 17353
Modified:
pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp
Log:
Fix a bug with enabling ZFS based upon the amount of memory.
Thanks Josh Smith!
Modified: pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp 2012-06-20 18:08:25 UTC (rev 17352)
+++ pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp 2012-06-20 18:16:56 UTC (rev 17353)
@@ -51,7 +51,8 @@
else
radioUFS->setChecked(true);
- if ( systemMemory > 1028 )
+ // If less than 768 MB, disable ZFS completely
+ if ( systemMemory < 768 )
radioZFS->setEnabled(false);
}
More information about the Commits
mailing list