Changeset 2962
- Timestamp:
- 11/11/08 11:43:47 (16 months ago)
- Location:
- pcbsd
- Files:
-
- 2 modified
-
branches/7.0/mfsroot-overlay/root/PCBSDStart.sh (modified) (1 diff)
-
trunk/mfsroot-overlay/root/PCBSDStart.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/branches/7.0/mfsroot-overlay/root/PCBSDStart.sh
r2620 r2962 66 66 if [ "$bootzfs" = "YES" ] 67 67 then 68 echo ' 68 MEM=`sysctl hw.realmem | cut -d " " -f 2` 69 if [ $MEM -gt 1000000000 ] 70 then 71 echo ' 69 72 zfs_enable="YES"' >> /etc/rc.conf 70 /etc/rc.d/zfs start 71 touch /tmp/zfsEnabled 73 /etc/rc.d/zfs start 74 touch /tmp/zfsEnabled 75 else 76 echo "WARNING: ZFS was enabled, but the system does not have the required 1GB of memory!" 77 echo "Please increase the memory to 1GB or above to install with ZFS." 78 echo "You may still install normally with UFS2 or UFS2 + Journaling." 79 echo "[Press Enter to Continue]" 80 read tmp 81 fi 72 82 fi 73 83 -
pcbsd/trunk/mfsroot-overlay/root/PCBSDStart.sh
r2620 r2962 66 66 if [ "$bootzfs" = "YES" ] 67 67 then 68 echo ' 68 MEM=`sysctl hw.realmem | cut -d " " -f 2` 69 if [ $MEM -gt 1000000000 ] 70 then 71 echo ' 69 72 zfs_enable="YES"' >> /etc/rc.conf 70 /etc/rc.d/zfs start 71 touch /tmp/zfsEnabled 73 /etc/rc.d/zfs start 74 touch /tmp/zfsEnabled 75 else 76 echo "WARNING: ZFS was enabled, but the system does not have the required 1GB of memory!" 77 echo "Please increase the memory to 1GB or above to install with ZFS." 78 echo "You may still install normally with UFS2 or UFS2 + Journaling." 79 echo "[Press Enter to Continue]" 80 read tmp 81 fi 72 82 fi 73 83
