[BACK]Return to rc CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / etc

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/etc/rc between version 1.81 and 1.82

version 1.81, 1997/07/11 09:06:59 version 1.82, 1997/07/11 12:01:06
Line 64  fi
Line 64  fi
 trap "echo 'Boot interrupted.'; exit 1" 3  trap "echo 'Boot interrupted.'; exit 1" 3
   
 umount -a >/dev/null 2>&1  umount -a >/dev/null 2>&1
 mount /  mount -a -t nonfs
 rm -f /fastboot         # XXX (root now writeable)  rm -f /fastboot         # XXX (root now writeable)
   
 if [ -f /etc/rc.conf ]; then  if [ -f /etc/rc.conf ]; then
Line 75  fi
Line 75  fi
 echo 'setting tty flags'  echo 'setting tty flags'
 ttyflags -a  ttyflags -a
   
 # /etc/rc.lkm needs /usr/bin/ld to load a lkm  # load any kernel modules specified in /etc/lkm.conf
 #  => you can not use lkm's if you have /usr on a nfs partition.  
 # This is because of /etc/rc.lkm has to be come before /etc/netstart  
 # to load possible network lkm's.  
 mount -t nonfs /usr >/dev/null 2>&1  
   
 # Load any kernel modules specified in /etc/lkm.conf  
 if [ "$lkm_init" != NO ] && [ -f /etc/rc.lkm ]; then  if [ "$lkm_init" != NO ] && [ -f /etc/rc.lkm ]; then
         . /etc/rc.lkm          . /etc/rc.lkm
 fi  fi
Line 93  if [ $? -ne 0 ]; then
Line 87  if [ $? -ne 0 ]; then
         exit 1          exit 1
 fi  fi
   
 # Mount a possible /usr on nfs partition and then mount a possible /var  mount /usr >/dev/null 2>&1
 # partition.  
 mount -t nfs /usr >/dev/null 2>&1  
 mount /var >/dev/null 2>&1  mount /var >/dev/null 2>&1
   
 # "Critical" file systems are now mounted.  Go ahead and swap  # "Critical" file systems are now mounted.  Go ahead and swap
Line 213  if [ "$amd_flags" != NO ] && [ -d "$amd_
Line 205  if [ "$amd_flags" != NO ] && [ -d "$amd_
 fi  fi
   
 echo '.'  echo '.'
 mount -a  mount -a -t nfs
   
 if [ -f /sbin/ldconfig ]; then  if [ -f /sbin/ldconfig ]; then
         echo 'creating runtime link editor directory cache.'          echo 'creating runtime link editor directory cache.'

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82

CVSweb <webmaster@jp.NetBSD.org>