No longer used (now using the miniroot installation).

This commit is contained in:
leo 1997-01-08 10:32:49 +00:00
parent 7dcae7a79d
commit c4de9da34f
4 changed files with 0 additions and 61 deletions

View File

@ -1,5 +0,0 @@
# $NetBSD: Makefile,v 1.1.1.1 1995/04/17 19:08:47 leo Exp $
SUBDIR= inst
.include <bsd.subdir.mk>

View File

@ -1,4 +0,0 @@
# $NetBSD: Makefile.inc,v 1.2 1995/11/28 23:57:10 jtc Exp $
# Revision is 1.1
REV= 11

View File

@ -1,39 +0,0 @@
# $NetBSD: list2sh.awk,v 1.1.1.1 1995/04/17 19:08:49 leo Exp $
BEGIN {
printf("cd ${CURDIR}\n");
printf("\n");
}
/^$/ || /^#/ {
print $0;
next;
}
$1 == "COPY" {
printf("echo '%s'\n", $0);
printf("cp %s ${TARGDIR}/%s\n", $2, $3);
next;
}
$1 == "LINK" {
printf("echo '%s'\n", $0);
printf("(cd ${TARGDIR}; ln %s %s)\n", $2, $3);
next;
}
$1 == "SPECIAL" {
printf("echo '%s'\n", $0);
printf("(cd ${TARGDIR};");
for (i = 2; i <= NF; i++)
printf(" %s", $i);
printf(")\n");
next;
}
{
printf("echo '%s'\n", $0);
printf("echo 'Unknown keyword \"%s\" at line %d of input.'\n", $1, NR);
printf("exit 1\n");
exit 1;
}
END {
printf("\n");
printf("exit 0\n");
exit 0;
}

View File

@ -1,13 +0,0 @@
# $NetBSD: runlist.sh,v 1.1.1.1 1995/04/17 19:08:49 leo 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}