[PC-BSD Commits] r19719 - pcbsd/current/src-qt4/pc-installgui
svn at pcbsd.org
svn at pcbsd.org
Wed Oct 17 09:48:55 PDT 2012
Author: kris
Date: 2012-10-17 16:48:55 +0000 (Wed, 17 Oct 2012)
New Revision: 19719
Modified:
pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp
Log:
Fix a bug with using ZFS mirror / raidz causing mounts to not appear
Modified: pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp 2012-10-17 16:38:48 UTC (rev 19718)
+++ pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp 2012-10-17 16:48:55 UTC (rev 19719)
@@ -190,7 +190,14 @@
generateDiskLayout();
populateDiskTree();
}
+
// Generate suggested disk layout and show disk tree
+ if ( prevID == Page_ZFS && currentId() == Page_Mounts) {
+ generateDiskLayout();
+ populateDiskTree();
+ }
+
+ // Generate suggested disk layout and show disk tree
if ( prevID == Page_BasicEnc && currentId() == Page_Mounts) {
generateDiskLayout();
populateDiskTree();
More information about the Commits
mailing list