home *** CD-ROM | disk | FTP | other *** search
- echo
- echo ">>> Installing directory structure"
- echo " ------------------------------"
- echo " This is the bare directory structure of Linux."
- tar $TARFLAGS $SRC/dirs.tgz -C $TARGET
- echo
- echo ">>> Installing devices"
- echo " ------------------"
- echo " These are the special device files that are installed in the"
- echo " /dev directory. They allow access to the various devices"
- echo " connected to your computer."
- tar $TARFLAGS $SRC/devs.tgz -C $TARGET
- echo
- echo ">>> Installing etc"
- echo " --------------"
- echo " The /etc directory contains various data files that are"
- echo " needed for the system."
- tar $TARFLAGS $SRC/etc.tgz -C $TARGET
- echo
- echo ">>> Installing shared libraries"
- echo " ---------------------------"
- echo " This contains the libraries:"
- echo " libc.so.4.6.27 C Library"
- echo " libcurses.so.0.1.2 Curses library"
- echo " libm.so.4.6.20 Math library"
- tar $TARFLAGS $SRC/shlibs.tgz -C $TARGET
- echo
- echo ">>> Installing ld.so, the dynamic linker"
- echo " ------------------------------------"
- echo " This is called by all programs to link the above shared"
- echo " libraries to the program."
- echo
- echo " Programs: ld.so, ldd, ldconfig"
- tar $TARFLAGS $SRC/ldso.tgz -C $TARGET
- echo
- echo ">>> Installing base"
- echo " ---------------"
- echo " This contains mtools, zip and unzip."
- tar $TARFLAGS $SRC/base.tgz -C $TARGET
- echo
- echo ">>> Installing sysvinit"
- echo " -------------------"
- echo " The SysV style init daemon. It controls the booting and"
- echo " shutdown of Linux. It allows for several different"
- echo " 'run levels', or configurations, and is responsible for"
- echo " keeping a login process on each of the consoles."
- echo " Please see the files in /etc/rc.d and /etc/inittab for"
- echo " more information."
- echo
- echo " Programs: init, reboot, halt, telinit, shutdown"
- tar $TARFLAGS $SRC/sysvinit.tgz -C $TARGET
- echo
- echo ">>> Installing agetty"
- echo " -----------------"
- echo " This is the process that provides the login process on"
- echo " a console. Its output is controlled by the /etc/issue"
- echo " file."
- echo
- echo "Programs: agetty"
- tar $TARFLAGS $SRC/agetty.tgz -C $TARGET
- echo
- echo ">>> Installing bash"
- echo " ---------------"
- echo " This is the GNU Bourne shell which used for most scripts"
- echo " under Linux."
- echo
- echo " Programs: bash and bashbug"
- tar $TARFLAGS $SRC/bash.tgz -C $TARGET
- echo
- echo ">>> Installing ext2 fs binaries"
- echo " ---------------------------"
- echo " These binaries are required to maintain the Linux ext2"
- echo " partitions on your system. They include consistency"
- echo " checks on the filesystem which get run on boot"
- echo
- echo " Programs: chattr, lsattr, mke2fs, mklost+found, tune2fs,"
- echo " e2fsck, and badblocks"
- tar $TARFLAGS $SRC/e2fsbn.tgz -C $TARGET
- echo
- echo ">>> Installing text utilities"
- echo " -------------------------"
- echo " The GNU text utilities allow manipulation of the contents"
- echo " of text files."
- echo
- echo " Programs: cat, cksum, comm, csplit, cut, expand, fold,"
- echo " head, join, nl, od, paste, pr, sort, split, sum,"
- echo " tac, tail, tr, unexpand, uniq and wc"
- tar $TARFLAGS $SRC/txtutils.tgz -C $TARGET
- echo
- echo ">>> Installing utilities"
- echo " --------------------"
- echo " This contains a huge plethora of utilities from Rik Faith."
- echo
- echo "Programs: arch, banner, bdflush, cal, cfdisk, chfn, chroot,"
- echo " chsh, clear, col, colcrt, colrm, column, ctrlaltdel,"
- echo " ddate, dmesg, dsplit, fdformat, fdisk, frag, fsck.minix,"
- echo " hexdump, hostid, hostname, ipcrm, ipcs, kill, last,"
- echo " login, lock, lpcntl, mcookie, md5sum, mesg, mkfs,"
- echo " mkfs.minix, mkswap, more, mount, namei, newgrp, passwd,"
- echo " readprofile, renice, reset, rev, script, setfdprm,"
- echo " setserial, setsid, setterm, sln, strings, swapon, sync,"
- echo " tsort, tunelp, ul, umount, vipw, wall, whereis, write,"
- echo " zic."
- tar $TARFLAGS $SRC/util.tgz -C $TARGET
- echo
-