Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/sandpoint/floppies unused crap



details:   https://anonhg.NetBSD.org/src/rev/69cfae60175c
branches:  trunk
changeset: 525514:69cfae60175c
user:      lukem <lukem%NetBSD.org@localhost>
date:      Fri Apr 12 14:07:06 2002 +0000

description:
unused crap

diffstat:

 distrib/sandpoint/floppies/Makefile.inc |   8 ----
 distrib/sandpoint/floppies/list2sh.awk  |  55 ---------------------------------
 distrib/sandpoint/floppies/runlist.sh   |  13 -------
 3 files changed, 0 insertions(+), 76 deletions(-)

diffs (88 lines):

diff -r b00af9f84102 -r 69cfae60175c distrib/sandpoint/floppies/Makefile.inc
--- a/distrib/sandpoint/floppies/Makefile.inc   Fri Apr 12 14:05:46 2002 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-#      $NetBSD: Makefile.inc,v 1.1 2001/12/07 05:04:58 briggs Exp $
-
-.include "../../../Makefile.inc"
-
-# REV is revision without dots, as in "12C"
-# VER is revision with dots, as in "1.2C"
-REV!=sh ${KERNSRCDIR}/conf/osrelease.sh -s
-VER!=sh ${KERNSRCDIR}/conf/osrelease.sh 
diff -r b00af9f84102 -r 69cfae60175c distrib/sandpoint/floppies/list2sh.awk
--- a/distrib/sandpoint/floppies/list2sh.awk    Fri Apr 12 14:05:46 2002 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,55 +0,0 @@
-#      $NetBSD: list2sh.awk,v 1.1 2001/12/07 05:04:58 briggs Exp $
-
-BEGIN {
-       printf("cd ${CURDIR}\n");
-       printf("\n");
-}
-/^$/ || /^#/ {
-       print $0;
-       next;
-}
-$1 == "COPY" {
-       printf("echo '%s'\n", $0);
-       printf("rm -f ${TARGDIR}/%s\n", $3);
-       printf("cp %s ${TARGDIR}/%s\n", $2, $3);
-       next;
-}
-$1 == "LINK" {
-       printf("echo '%s'\n", $0);
-       printf("rm -f ${TARGDIR}/%s\n", $3);
-       printf("(cd ${TARGDIR}; ln %s %s)\n", $2, $3);
-       next;
-}
-$1 == "SYMLINK" {
-       printf("echo '%s'\n", $0);
-       printf("rm -f ${TARGDIR}/%s\n", $3);
-       printf("(cd ${TARGDIR}; ln -s %s %s)\n", $2, $3);
-       next;
-}
-$1 == "COPYDIR" {
-       printf("echo '%s'\n", $0);
-       printf("(cd ${TARGDIR}/%s && find . ! -name . | xargs /bin/rm -rf)\n",
-           $3);
-       printf("(cd %s && find . ! -name . | cpio -pdamu ${TARGDIR}/%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;
-}
diff -r b00af9f84102 -r 69cfae60175c distrib/sandpoint/floppies/runlist.sh
--- a/distrib/sandpoint/floppies/runlist.sh     Fri Apr 12 14:05:46 2002 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-#      $NetBSD: runlist.sh,v 1.1 2001/12/07 05:04:58 briggs 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}



Home | Main Index | Thread Index | Old Index