home *** CD-ROM | disk | FTP | other *** search
/ Internet News 1999 February / InternetNews_1999_02.iso / pc / Linux / Debian / drv1440.bin / INSTALL.SH < prev    next >
Linux/UNIX/POSIX Shell Script  |  1998-07-21  |  705b  |  29 lines

  1. #!    /bin/sh
  2.  
  3. # Install the kernel modules and modconf tool from this boot floppy onto
  4. # the root filesystem. The commands used by this script are limited to
  5. # the ones available on the root floppy.
  6. set -e
  7. umask 022
  8.  
  9. if [ ! -f install.sh ]; then
  10.     echo "Error: Change directory to the floppy before running this script." 1>&2
  11.     exit -1
  12. fi
  13. FLOPPY=`pwd`
  14.  
  15. if [ $# -gt 0 ]; then
  16.     DDIR=$1
  17. fi
  18. (cd ${DDIR}/; zcat < ${FLOPPY}/modules.tgz|star)
  19. mkdir -p ${DDIR}/usr/sbin 
  20. cp ${FLOPPY}/modconf ${DDIR}/usr/sbin/ 
  21. if [ -e ${FLOPPY}/pcmcia.tgz ]; then
  22.     (cd ${DDIR}/; zcat < ${FLOPPY}/pcmcia.tgz |star)
  23. fi
  24. mkdir -p ${DDIR}/usr/lib/module_help
  25. cp ${FLOPPY}/eval ${FLOPPY}/descr.gz ${DDIR}/usr/lib/module_help/
  26.  
  27. sync
  28. exit 0
  29.