home *** CD-ROM | disk | FTP | other *** search
/ ftp.eterna.com.au / 2014.06.ftp.eterna.com.au.tar / ftp.eterna.com.au / pub / rc.d.tar.gz / rc.d.tar / rc.d / lkm1 < prev    next >
Text File  |  1998-09-23  |  324b  |  15 lines

  1. #! /bin/sh
  2.  
  3. # PROVIDE: beforenetlkm
  4. # REQUIRES: tty
  5.  
  6. # load kernel modules specified in /etc/lkm.conf if the /usr filesystem
  7. # is already present with "/" or can be mounted now
  8. if checkyesno lkm && [ -f /etc/rc.lkm ]; then
  9.     mount /usr >/dev/null 2>&1
  10.     if [ -x /usr/bin/ld ]; then
  11.         lkmstage=BEFORENET
  12.         . /etc/rc.lkm
  13.     fi
  14. fi
  15.