Commit Graph

418 Commits

Author SHA1 Message Date
phk
b90cee4459 The vnconfig program. 1994-12-04 20:12:26 +00:00
phk
90b4bed662 Added the vnconfig program. 1994-12-04 20:11:50 +00:00
phk
d324e84391 Cannot use rmdir() for 'FR' because mkCTM doesn't sort the directories
in -depth order for us.  cvs-cur.0018.gz is a good example.
1994-12-04 04:47:31 +00:00
phk
750110ff61 Fix this to work under 2.0 also. 1994-12-03 22:54:04 +00:00
nate
2d64079f08 Kernel name is now kernel and not 386bsd. 1994-12-02 06:19:37 +00:00
wollman
4653de1bed Change obnoxious ``Not root dir'' error message into one which actually
tells you what's wrong.
1994-12-02 02:58:56 +00:00
phk
f42c603979 Fixed a typo. Poited out by Bruce & Phillipe. 1994-12-01 21:05:28 +00:00
ache
6d41c5d8b1 BSD 4.4 compatibility fix
Submitted by: Ollivier Robert
1994-11-29 01:05:37 +00:00
ats
3d65ea4e06 Add the automatically generated crunched_skel.c file to the CLEANFILES. 1994-11-28 11:46:37 +00:00
bde
4bcecacea0 Remove ifdef for STATCLOCK. STATCLOCK is standard. 1994-11-27 16:16:35 +00:00
bde
fb796d5484 Apply an even number of ntohl's to icmp_otime. This fixes
`timedc clockdiff ...'.
1994-11-27 16:06:31 +00:00
bde
49478ff794 Fix syntax errors (0 = foo()). 1994-11-27 16:01:29 +00:00
phk
f5ce930d62 Stefan Esser proved that I couldn't program, and Ollivier Robert that I
couldn't spell :-)
Submitted by:	Stefan Esser, Ollivier Robert
1994-11-26 08:57:42 +00:00
wollman
7778a7de23 Don't core on ``root on qq0 and fx0 and yy0'' specifications; just
take the first one and ignore all the rest, giving a warning message.
Fixes PR #3.
1994-11-23 20:36:08 +00:00
ache
00e059c5c4 Make edquota works with other then vi editors,
i.e.check file by name, not by fd
1994-11-22 18:52:58 +00:00
phk
4bc6a91c86 abs path to /sys 1994-11-21 02:21:07 +00:00
phk
c83ea0afa6 once more 1994-11-21 01:54:55 +00:00
phk
7316dfafe2 More abs paths nuked 1994-11-21 01:52:36 +00:00
phk
6b2ffe34b1 And another absolute path -I :-< 1994-11-20 22:42:16 +00:00
ats
3675202729 Put a simple algorithmus in there that checks the last generated prototype
for ioconf.c with the current and suppress the generation if they are
equal. This now prevents all the warnings from the c-compiler about
sio or snd or two adaptecs. This works only if the sio lines are grouped
together in the config files, but it is better than nothing.
1994-11-20 13:39:07 +00:00
ats
520dbb87d7 Add the missing subdirs cdplay and spkrtest into the clean/cleandir targets. 1994-11-19 17:34:12 +00:00
jkh
e002b6ef5b Some miscellaneous bug fixes inspired by Adam Glass's work. Adam's
work is actually more comprehensive, but I just took what was needed
for now given our compressed time schedules.  Thanks, Adam!
Submitted by:	glass
1994-11-19 13:57:21 +00:00
ats
18391ab818 More updates to the manual pages. Used also the unknown macro.
Also install the named-xfer manual page, when we have it in the source.
1994-11-19 13:42:06 +00:00
ats
757545cc13 More updates to the manual pages. Used also the unknown macro. 1994-11-19 13:41:26 +00:00
ats
744b3385ae Correct the nslookup manpage that has some macros in it, that our man system
doesn't understand.
1994-11-19 13:16:52 +00:00
ats
465a0cd9f8 Correct the named manpage that has some macros in it, that our man system
doesn't understand.
1994-11-19 13:14:54 +00:00
jkh
3e1319c762 From: "Jonathan M. Bresler" <jmb@kryten.Atinc.COM>
in getting mirror-2.3 to work with FreeBSD, i found that timelocal.pl has
a bug.  a patch is included below.  this needs to be applied to both
src/gnu/usr.bin/perl/lib/timelocal.pl and
src/usr.sbin/xntpd/scripts/monitoring/timelocal.pl

Reviewed by:
Submitted by:
Obtained from:
1994-11-18 02:55:21 +00:00
gibbs
a4db917a17 Add new keywords to config. The options availible in file.i386 are now:
/*
         * filename     [ standard | optional ] [ config-dependent ]
         *      [ dev* | profiling-routine ] [ device-driver] [ no-obj ]
         *      [ compile-with "compile rule" [no-implicit-rule] ]
         *                     [ dependancy "dependancy-list"]
         */

I added

no-obj -  This entry does not create anything linkable to the kernel.
dependancy - Add additional dependancy rules to a target.
no-implicit-rule - Don't assume .c -> .o type rules.  Config is really
             dumb in this area and assumes that everything is a .c file
	     irregarless of extention.  This was the best choice really
	     since there may even be .c file that you don't want to follow
	     the standard rules.

This was all done so that the building to the aic7770 assembler and using
the aic7770 assembler in the building of the aic7770 driver could be config
dependant.  I can now have an entry like this for the driver:

aic7770                         optional        ahc     device-driver   \
        compile-with    "${CC} $> -o $@"                                \
        dependancy      "$S/gnu/misc/aic7770/aic7770.c"                 \
        no-obj no-implicit-rule
aic7770_seq.h                   optional        ahc     device-driver          \
        compile-with "${.CURDIR}/aic7770 -o $@ $S/gnu/misc/aic7770/aic7770.seq"\
        dependancy "$S/gnu/misc/aic7770/aic7770.seq aic7770"                   \
        no-obj no-implicit-rule
i386/isa/aic7770.c              optional        ahc     device-driver   \
        dependancy "aic7770_seq.h"

I also added '\' escaping to newlines so that this doesn't look as gross as
it could have.

Reviewed by: jkh
1994-11-17 20:30:01 +00:00
jkh
8bec5bd96a Don't create packages with bogus @name lines. 1994-11-17 10:54:11 +00:00
jkh
bcb02cd44f Protect against old packages with bogus @name fields. Use basename_of()
on the name before recording it in /var/db/pkg.  Sorry, Kaleb, you
were right after all!  It was my fault! :)
1994-11-17 10:53:21 +00:00
jkh
bedd10c589 Add a new basename_of() function. 1994-11-17 10:51:51 +00:00
jkh
f9d710d682 Remove the QUERY_* functions. I don't think they're as good an
idea as I apparently once did.
1994-11-17 10:35:04 +00:00
ache
a0e5c099ef strncmp use wrong utmp name size
Submitted by: rlz@zeus.id.net
1994-11-14 20:26:52 +00:00
bde
746983c7cf Add missing define of DPADD. Remove uneccessary define SRCS. Reorder
defines.
1994-11-14 08:02:40 +00:00
bde
622565596a Don't follow a null pointer for the reporting error if kvm_openfiles() fails.
Don't ever pretend that the program is named "." and has no args.
1994-11-14 07:54:06 +00:00
bde
0b892afd56 Don't build an unused array of kernel names when HAVE_GETBOOTFILE is
defined.

Don't use the newfangled C features to waste time building the array
at runtime when HAVE_GETBOOTFILE is not defined.
1994-11-14 07:51:11 +00:00
lars
c46a20d90e Delete duplicate pppd entry. Also move pppstats in the right spot lexically. 1994-11-12 22:24:17 +00:00
lars
76d3cc756a Obtained from: ppp-2.1.2
More correct use of __FreeBSD__ and BSD4_4 ifdefs. Fixed kvm_openfile()
call based upon suggestion from Bruce Evans.
1994-11-12 19:33:41 +00:00
lars
64ebbaff95 pppd was missing from the SUBDIRS. 1994-11-12 19:15:01 +00:00
ache
ac314f6066 Use CDIOCALLOW before CDIOCEJECT 1994-11-12 18:25:03 +00:00
ache
2af87c7a44 cdplay added 1994-11-12 16:05:43 +00:00
ache
82b902cc15 This commit was generated by cvs2svn to compensate for changes in r4392,
which included commits to RCS files with non-trunk default branches.
1994-11-12 16:03:14 +00:00
ache
1cf7809d91 Very simple non-X CD player for testing purposes,
better than nothing
1994-11-12 16:03:14 +00:00
lars
e6155415bb This commit was generated by cvs2svn to compensate for changes in r4381,
which included commits to RCS files with non-trunk default branches.
1994-11-12 06:07:15 +00:00
lars
210ec41d99 pppstats from ppp-2.1.2 1994-11-12 06:07:15 +00:00
jkh
f63f8bab78 Add pppd to the Makefile. It seems to work.. 1994-11-11 23:47:32 +00:00
ache
fba9f04836 Fix printout bug
Submitted by: fredriks@mcs.com
1994-11-10 13:39:01 +00:00
wollman
0c83e6c366 Treat formfeeds like any other whitespace. 1994-11-07 19:57:20 +00:00
smace
dd1ef4d386 Make /usr/bin/crontab install setuid root. (doesn't work otherwise)
The distributed makefile in the package installs it setuid root..
Reviewed by:	jkh
1994-11-06 01:13:59 +00:00
jkh
5446d45c75 __386BSD__ -> __FreeBSD__
I know that many of these entries are bogus and need to be revisited,
but let's get the tree working again for now and then do a pass through
looking at all the __FreeBSD__ entries, shall we?
1994-11-04 02:14:13 +00:00