Clean up deleted files.
This commit is contained in:
parent
e67ae11432
commit
90b0e68767
|
@ -1,7 +0,0 @@
|
|||
# $Id: Makefile,v 1.3 1994/06/14 04:19:43 cgd Exp $
|
||||
|
||||
.ifnmake install
|
||||
SUBDIR= fsck init mount reboot sh tar test umount
|
||||
.endif
|
||||
|
||||
.include <bsd.subdir.mk>
|
|
@ -1,4 +0,0 @@
|
|||
# $Id: Makefile.inc,v 1.1 1994/04/18 08:47:09 cgd Exp $
|
||||
|
||||
LDSTATIC= -static
|
||||
LDFLAGS+= -N
|
|
@ -1,16 +0,0 @@
|
|||
# from: @(#)Makefile 5.15 (Berkeley) 6/29/90
|
||||
# $Id: Makefile,v 1.2 1994/06/14 01:16:30 cgd Exp $
|
||||
|
||||
SRCDIR= ${.CURDIR}/../../../../../sbin/fsck
|
||||
|
||||
PROG= fsck
|
||||
NOMAN=
|
||||
SRCS= dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
|
||||
pass5.c preen.c setup.c utilities.c ffs_subr.c ffs_tables.c
|
||||
CFLAGS+= -DSMALL
|
||||
|
||||
BINDIR= /sbin
|
||||
|
||||
.PATH: ${SRCDIR} ${SRCDIR}/../../sys/ufs/ffs
|
||||
|
||||
.include <bsd.prog.mk>
|
|
@ -1,17 +0,0 @@
|
|||
# from: @(#)Makefile 5.3 (Berkeley) 5/11/90
|
||||
# from: BSDI Id: Makefile,v 1.3 1993/06/14 20:06:22 donn Exp
|
||||
# $Id: Makefile,v 1.1 1994/04/18 08:47:26 cgd Exp $
|
||||
|
||||
PROG= init
|
||||
SRCS= init.c
|
||||
NOMAN=
|
||||
CFLAGS+=-DNOSYSCTL -DLETS_GET_SMALL
|
||||
DPADD= ${LIBUTIL} ${LIBCRYPT}
|
||||
LDADD= -lutil -lcrypt
|
||||
BINMODE=500
|
||||
|
||||
BINDIR= /sbin
|
||||
|
||||
.PATH: ${.CURDIR}/../../../../../sbin/init
|
||||
|
||||
.include <bsd.prog.mk>
|
|
@ -1,13 +0,0 @@
|
|||
# from: @(#)Makefile 5.5 (Berkeley) 5/11/90
|
||||
# $Id: Makefile,v 1.2 1994/06/14 01:16:40 cgd Exp $
|
||||
|
||||
PROG= mount
|
||||
SRCS= mount.c mount_ufs.c getmntopts.c
|
||||
CFLAGS+= -DLETS_GET_SMALL
|
||||
NOMAN=
|
||||
|
||||
BINDIR=/sbin
|
||||
|
||||
.PATH: ${.CURDIR}/../../../../../sbin/mount
|
||||
|
||||
.include <bsd.prog.mk>
|
|
@ -1,11 +0,0 @@
|
|||
# from: @(#)Makefile 5.6 (Berkeley) 6/29/90
|
||||
# $Id: Makefile,v 1.1 1994/04/18 08:47:32 cgd Exp $
|
||||
|
||||
PROG= reboot
|
||||
NOMAN=
|
||||
|
||||
BINDIR=/sbin
|
||||
|
||||
LINKS= ${BINDIR}/reboot ${BINDIR}/halt
|
||||
|
||||
.include <bsd.prog.mk>
|
|
@ -1,66 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 1994 Christopher G. Demetriou
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by Christopher G. Demetriou.
|
||||
* 4. The name of the author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef lint
|
||||
/*static char sccsid[] = "from: @(#)reboot.c 5.11 (Berkeley) 2/27/91";*/
|
||||
static char rcsid[] = "$Id: reboot.c,v 1.1 1994/04/18 08:47:34 cgd Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/signal.h>
|
||||
#include <sys/syscall.h>
|
||||
#include <sys/reboot.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#define errprint(x) write(STDERR_FILENO, x, strlen(x))
|
||||
|
||||
main(argc, argv)
|
||||
int argc;
|
||||
char **argv;
|
||||
{
|
||||
int howto;
|
||||
char *name;
|
||||
|
||||
name = strrchr(argv[0], '/');
|
||||
if (name == NULL)
|
||||
name = argv[0];
|
||||
else
|
||||
name++;
|
||||
if (strcmp("halt", name) == 0)
|
||||
howto = RB_HALT;
|
||||
else
|
||||
howto = RB_AUTOBOOT;
|
||||
|
||||
syscall(SYS_reboot, howto);
|
||||
errprint(name);
|
||||
errprint(" failed");
|
||||
kill(1, SIGHUP);
|
||||
exit(1);
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
# $Id: Makefile,v 1.3 1994/06/24 07:47:57 jtc Exp $
|
||||
|
||||
PROG= sh
|
||||
NOMAN=
|
||||
SRCS= alias.c builtins.c cd.c echo.c error.c eval.c exec.c expand.c \
|
||||
input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
|
||||
mystring.c nodes.c options.c parser.c redir.c show.c \
|
||||
syntax.c trap.c output.c var.c #histedit.c
|
||||
OBJS+= init.o arith.o arith_lex.o
|
||||
LDADD+= -ll #-ledit -ltermcap
|
||||
DPADD+= ${LIBL} #${LIBEDIT} ${LIBTERMCAP}
|
||||
LFLAGS= -8 # 8-bit lex scanner for arithmetic
|
||||
SRCDIR= ${.CURDIR}/../../../../../bin/sh
|
||||
CFLAGS+=-DSHELL -I. -I${SRCDIR} -DNO_HISTORY
|
||||
|
||||
BINDIR=/bin
|
||||
|
||||
.PATH: ${SRCDIR} ${SRCDIR}/bltin
|
||||
|
||||
CLEANFILES+=\
|
||||
builtins.c builtins.h init.c mkinit mknodes mksyntax \
|
||||
nodes.c nodes.h syntax.c syntax.h token.def y.tab.h
|
||||
|
||||
.depend parser.o: token.def
|
||||
token.def: mktokens
|
||||
sh ${SRCDIR}/mktokens
|
||||
|
||||
builtins.h builtins.c: ${SRCDIR}/mkbuiltins ${SRCDIR}/builtins.def
|
||||
cd ${SRCDIR}; sh mkbuiltins -h ${.OBJDIR}
|
||||
|
||||
init.c: mkinit ${SRCS}
|
||||
./mkinit '${CC} -c ${CFLAGS} init.c' ${.ALLSRC}
|
||||
touch ${.TARGET}
|
||||
|
||||
mkinit: ${LIBCRT0} ${SRCDIR}/mkinit.c ${LIBC} ${DPADD}
|
||||
${CC} ${CFLAGS} ${LDFLAGS} ${LDSTATIC} ${SRCDIR}/mkinit.c -o $@ ${LDADD}
|
||||
|
||||
nodes.c nodes.h: mknodes ${SRCDIR}/nodetypes ${SRCDIR}/nodes.c.pat
|
||||
./mknodes ${SRCDIR}/nodetypes ${SRCDIR}/nodes.c.pat
|
||||
|
||||
mknodes: ${LIBCRT0} ${SRCDIR}/mknodes.c ${LIBC} ${DPADD}
|
||||
${CC} ${CFLAGS} ${LDFLAGS} ${LDSTATIC} ${SRCDIR}/mknodes.c -o $@ ${LDADD}
|
||||
|
||||
syntax.c syntax.h: mksyntax
|
||||
./mksyntax
|
||||
|
||||
mksyntax: ${LIBCRT0} ${SRCDIR}/mksyntax.c ${SRCDIR}/parser.h ${LIBC} ${DPADD}
|
||||
${CC} ${CFLAGS} ${LDFLAGS} ${LDSTATIC} ${SRCDIR}/mksyntax.c -o $@ ${LDADD}
|
||||
|
||||
.include <bsd.prog.mk>
|
|
@ -1,26 +0,0 @@
|
|||
# $Id: Makefile,v 1.1 1994/04/18 08:47:38 cgd Exp $
|
||||
|
||||
SRCDIR= ${.CURDIR}/../../../../../gnu/usr.bin/tar
|
||||
|
||||
PROG= tar
|
||||
SRCS= buffer.c create.c diffarch.c extract.c fnmatch.c getdate.y \
|
||||
getoldopt.c getopt.c getopt1.c gnu.c list.c mangle.c names.c port.c \
|
||||
regex.c rtapelib.c tar.c update.c version.c
|
||||
CFLAGS+= -DRETSIGTYPE=void -DDIRENT=1 -DHAVE_SYS_MTIO_H=1 -DHAVE_UNISTD_H=1
|
||||
CFLAGS+= -DHAVE_GETGRGID=1 -DHAVE_GETPWUID=1 -DHAVE_STRING_H=1
|
||||
CFLAGS+= -DHAVE_LIMITS_H=1 -DHAVE_STRSTR=1 -DHAVE_VALLOC=1 -DHAVE_MKDIR=1
|
||||
CFLAGS+= -DHAVE_MKNOD=1 -DHAVE_RENAME=1 -DHAVE_FTRUNCATE=1 -DHAVE_GETCWD=1
|
||||
CFLAGS+= -DHAVE_VPRINTF=1 -DNEEDPAD -I${SRCDIR}
|
||||
CFLAGS+= -DDEF_AR_FILE=\"/dev/rst0\" -DDEFBLOCKING=20
|
||||
|
||||
LDADD+= -lgnumalloc
|
||||
DPADD+= /usr/lib/libgnumalloc.a
|
||||
|
||||
NOMAN=noman
|
||||
CLEANFILES+=y.tab.h
|
||||
|
||||
BINDIR= /usr/bin
|
||||
|
||||
.PATH: ${SRCDIR}
|
||||
|
||||
.include <bsd.prog.mk>
|
|
@ -1,15 +0,0 @@
|
|||
# from: @(#)Makefile 5.1 (Berkeley) 6/8/92
|
||||
# $Id: Makefile,v 1.2 1994/07/01 20:18:48 deraadt Exp $
|
||||
|
||||
SRCDIR= ${.CURDIR}/../../../../../bin/test
|
||||
|
||||
PROG= test
|
||||
SRCS= test.c
|
||||
LINKS= ${BINDIR}/test ${BINDIR}/[
|
||||
NOMAN=
|
||||
|
||||
BINDIR= /bin
|
||||
|
||||
.PATH: ${SRCDIR}
|
||||
|
||||
.include <bsd.prog.mk>
|
|
@ -1,9 +0,0 @@
|
|||
# from: @(#)Makefile 5.4 (Berkeley) 5/11/90
|
||||
# $Id: Makefile,v 1.1 1994/04/18 08:47:43 cgd Exp $
|
||||
|
||||
PROG= umount
|
||||
NOMAN= noman
|
||||
|
||||
BINDIR= /sbin
|
||||
|
||||
.include <bsd.prog.mk>
|
|
@ -1,68 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 1994 Christopher G. Demetriou
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by Christopher G. Demetriou.
|
||||
* 4. The name of the author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef lint
|
||||
static char rcsid[] = "$Id: umount.c,v 1.3 1994/08/02 12:27:10 ws Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/mount.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#define errprint(x) write(STDERR_FILENO, x, strlen(x))
|
||||
|
||||
int eval, fflag;
|
||||
|
||||
int
|
||||
main(argc, argv)
|
||||
int argc;
|
||||
char **argv;
|
||||
{
|
||||
sync();
|
||||
if (strcmp(*++argv, "-f") == 0) {
|
||||
fflag = MNT_FORCE;
|
||||
argv++;
|
||||
}
|
||||
if (*argv && **argv == '-') {
|
||||
errprint("usage: umount [-f] node ...");
|
||||
_exit(1);
|
||||
}
|
||||
for (eval = 0; *argv; ++argv)
|
||||
if (unmount(*argv, fflag)) {
|
||||
errprint(*argv);
|
||||
errprint(": couldn't unmount");
|
||||
eval = 1;
|
||||
}
|
||||
_exit(eval);
|
||||
}
|
Loading…
Reference in New Issue