Changeset 2620
- Timestamp:
- 08/19/08 18:24:22 (3 months ago)
- Files:
-
- 1 modified
-
pcbsd/trunk/mfsroot-overlay/root/PCBSDStart.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/trunk/mfsroot-overlay/root/PCBSDStart.sh
r2618 r2620 46 46 # Check for VESA support 47 47 xvesa="NO" 48 v=` kenv xvesa`48 v=`/bin/kenv xvesa` 49 49 if [ $? -eq 0 ]; then 50 50 xvesa=$v … … 58 58 59 59 # Check if the user enabled ZFS support and do it 60 /sbin/sysctl kern.module_path | /usr/bin/grep "ZFS" >/dev/null 2>/dev/null 61 FOUND="$?" 62 if [ "$FOUND" = "0" ] 60 bootzfs="NO" 61 v=`/bin/kenv bootzfs` 62 if [ $? -eq 0 ]; then 63 bootzfs=$v 64 fi 65 66 if [ "$bootzfs" = "YES" ] 63 67 then 64 68 echo '
