[PC-BSD Commits] r20483 - pcbsd/current/src-qt4/pc-installgui
svn at pcbsd.org
svn at pcbsd.org
Tue Dec 11 13:04:00 PST 2012
Author: kris
Date: 2012-12-11 21:04:00 +0000 (Tue, 11 Dec 2012)
New Revision: 20483
Modified:
pcbsd/current/src-qt4/pc-installgui/installer.cpp
pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp
Log:
Don't use /root in default ZFS layout. FreeBSD still likes to hard-link
/root/.cshrc and /root/.profile to /.cshrc and /.profile respectively,
so we will honor that
Modified: pcbsd/current/src-qt4/pc-installgui/installer.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-installgui/installer.cpp 2012-12-11 20:52:24 UTC (rev 20482)
+++ pcbsd/current/src-qt4/pc-installgui/installer.cpp 2012-12-11 21:04:00 UTC (rev 20483)
@@ -264,7 +264,7 @@
} else {
// Add the main zfs pool with standard partitions
fsType= "ZFS";
- fileSystem << targetDisk << targetSlice << "/,/swap(volsize=2G|org.freebsd:swap=on|checksum=off),/root,/tmp(compress=lzjb),/usr(canmount=off),/usr/home,/usr/jails,/usr/obj(compress=lzjb),/usr/pbi,/usr/ports(compress=gzip),/usr/ports/distfiles(compress=off),/usr/src(compress=gzip),/var(canmount=off),/var/audit(compress=lzjb),/var/log(compress=gzip),/var/tmp(compress=lzjb)" << fsType << tmp.setNum(totalSize) << "" << "";
+ fileSystem << targetDisk << targetSlice << "/,/swap(volsize=2G|org.freebsd:swap=on|checksum=off),/tmp(compress=lzjb),/usr(canmount=off),/usr/home,/usr/jails,/usr/obj(compress=lzjb),/usr/pbi,/usr/ports(compress=gzip),/usr/ports/distfiles(compress=off),/usr/src(compress=gzip),/var(canmount=off),/var/audit(compress=lzjb),/var/log(compress=gzip),/var/tmp(compress=lzjb)" << fsType << tmp.setNum(totalSize) << "" << "";
//qDebug() << "Auto-Gen FS:" << fileSystem;
sysFinalDiskLayout << fileSystem;
fileSystem.clear();
Modified: pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp 2012-12-11 20:52:24 UTC (rev 20482)
+++ pcbsd/current/src-qt4/pc-installgui/wizardDisk.cpp 2012-12-11 21:04:00 UTC (rev 20483)
@@ -460,7 +460,7 @@
// Add the main zfs pool with standard partitions including a /swap on ZFS
// This lets the user do nifty stuff like a mirror/raid post-install with a single zpool command
- fileSystem << targetDisk << targetSlice << "/,/swap(volsize=2G|org.freebsd:swap=on|checksum=off),/root,/tmp(compress=lzjb),/usr(canmount=off),/usr/home,/usr/jails,/usr/obj(compress=lzjb),/usr/pbi,/usr/ports(compress=gzip),/usr/ports/distfiles(compress=off),/usr/src(compress=gzip),/var(canmount=off),/var/audit(compress=lzjb),/var/log(compress=gzip),/var/tmp(compress=lzjb)" << fsType << tmp.setNum(totalSize) << "" << tmpPass;
+ fileSystem << targetDisk << targetSlice << "/,/swap(volsize=2G|org.freebsd:swap=on|checksum=off),/tmp(compress=lzjb),/usr(canmount=off),/usr/home,/usr/jails,/usr/obj(compress=lzjb),/usr/pbi,/usr/ports(compress=gzip),/usr/ports/distfiles(compress=off),/usr/src(compress=gzip),/var(canmount=off),/var/audit(compress=lzjb),/var/log(compress=gzip),/var/tmp(compress=lzjb)" << fsType << tmp.setNum(totalSize) << "" << tmpPass;
//qDebug() << "Auto-Gen FS:" << fileSystem;
sysFinalDiskLayout << fileSystem;
fileSystem.clear();
More information about the Commits
mailing list