508eb6d6ba
in its belly. This differs from the floppy kernel in that it uses the sysinst installation tool (and thus requires more space; the ramdisk is 3M). This is useful for netbooting and installing or for placing on a CD-ROM.
14 lines
234 B
Bash
14 lines
234 B
Bash
# $NetBSD: runlist.sh,v 1.1 1998/02/01 01:58:50 thorpej Exp $
|
|
|
|
if [ "X$1" = "X-d" ]; then
|
|
SHELLCMD=cat
|
|
shift
|
|
else
|
|
SHELLCMD="sh -e"
|
|
fi
|
|
|
|
( while [ "X$1" != "X" ]; do
|
|
cat $1
|
|
shift
|
|
done ) | awk -f ${TOPDIR}/list2sh.awk | ${SHELLCMD}
|