home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / SLAKWARE / A1 / MAKETAG.EZ < prev    next >
Text File  |  1997-04-19  |  2KB  |  55 lines

  1. #!/bin/sh
  2. #item   ####description                                      ###on off ###
  3. cat /dev/null > /tmp/SeTnewtag
  4. dialog --title "SELECTING SOFTWARE FROM SERIES A (BASE LINUX SYSTEM)" \
  5.        --checklist "Please select the optional components you wish to install \
  6. from series A. Use the \
  7. UP/DOWN keys to scroll through the list, and the SPACE key to select \
  8. the items you wish to install. \
  9. (NOTE: The more important system packages are not listed here and will be installed \
  10. automatically) \
  11. Press ENTER when you are \
  12. done." 20 72 9 \
  13. "ide"  "Linux 2.0.29 no SCSI (YOU NEED 1 KERNEL)" "on" \
  14. "scsi"  "Linux 2.0.29 with SCSI (YOU NEED 1 KERNEL)" "on" \
  15. "lprng" "LPRng - printer spooling system" "on" \
  16. "loadlin" "Boots Linux (UMSDOS too!) from MS-DOS" "on" \
  17. "ibcs2" "Runs SCO/SysVr4 binaries" "off" \
  18. "pcmcia" "PCMCIA card services support" "off" \
  19. "pnp" "Plug'n'Play configuration tool" "off" \
  20. "getty" "Getty_ps 2.0.7e - OPTIONAL" "off" \
  21. "scsimods" "Linux SCSI kernel modules" "off" \
  22. "aoutlibs" "a.out shared libraries - RECOMMENDED" "on" \
  23. "minicom" "Serial transfer and modem comm package" "on" \
  24. "cpio" "The GNU cpio backup/archiving utility" "on" \
  25. "keytbls" "Change keyboard mappings and console fonts" "on" \
  26. "gpm" "Cut and paste text with your mouse" "on" \
  27. "zoneinfo" "Configures your time zone" "on" \
  28. 2> /tmp/SeTpkgs
  29. if [ $? = 1 -o $? = 255 ]; then
  30.  rm -f /tmp/SeTpkgs
  31.  > /tmp/SeTnewtag
  32.  for pkg in aaa_base aoutlibs bash cpio devs etc grep bin gzip e2fsbn elflibs \
  33.   find getty gpm hdsetup ibcs2 ide keytbls less ldso lilo loadlin lprng pnp \
  34.   umsprogs minicom modules ps sysklogd pcmcia scsi sh_utils sysvinit scsimods \
  35.   shadow tar tcsh txtutils util zoneinfo ; do
  36.   echo "$pkg: SKP" >> /tmp/SeTnewtag
  37.  done
  38.  exit
  39. fi
  40. cat /dev/null > /tmp/SeTnewtag
  41. for PACKAGE in aaa_base bash devs etc shadow hdsetup lilo umsprogs sysvinit \
  42. bin ldso less gzip ps elflibs util e2fsbn find grep sh_utils sysklogd \
  43. lprng modules tar txtutils tcsh ; do
  44.   echo "$PACKAGE: ADD" >> /tmp/SeTnewtag
  45. done
  46. for PACKAGE in ide scsi getty aoutlibs minicom cpio keytbls \
  47. pnp scsimods gpm zoneinfo ibcs2 loadlin pcmcia ; do
  48.  if fgrep \"$PACKAGE\" /tmp/SeTpkgs 1> /dev/null 2> /dev/null ; then
  49.   echo "$PACKAGE: ADD" >> /tmp/SeTnewtag
  50.  else
  51.   echo "$PACKAGE: SKP" >> /tmp/SeTnewtag
  52.  fi
  53. done
  54. rm -f /tmp/SeTpkgs
  55.