Commit Graph

210 Commits

Author SHA1 Message Date
bde
9ee8150eef Remove `retval' from syscall functions here too. 1997-12-30 08:38:34 +00:00
julian
665c3117b0 The example drivers should use 'poll' now that it has replaced select. 1997-12-30 03:23:13 +00:00
sos
c5e6ff93d4 Add a little example on libvgl usage. 1997-10-16 07:29:26 +00:00
jkh
032c8e96fd Back out my last commit - the trailing / should stay and fetch(1) should
stop puking on null directory components.
1997-10-08 12:07:09 +00:00
jkh
204fe37212 Remove trailing slash from MASTER_SITE_BACKUP example since it
can lead to two trailing /'s, which is in turn an invalid URL (just
bit me :-).
1997-10-08 10:56:27 +00:00
jkh
c442d17711 Correct typo.
PR:		4681
Submitted by:	Masahiro Sekiguchi <seki@sysrap.cs.fujitsu.co.jp>
1997-10-03 03:34:00 +00:00
jkh
e6d77652c3 src-contrib-crypto is now just src-crypto (unless the user wants to see
tons of stuff in an Attic).
1997-10-02 00:01:36 +00:00
jkh
2f54933dbb Document the ever decreasingly popular USA_RESIDENT variable. 1997-09-28 22:11:21 +00:00
markm
3c7b1d650b Final commit for KTH KerberosIV.
-DMAKE_EBONES -> -DMAKE_KERBEROS4
1997-09-28 09:29:11 +00:00
jdp
295f220668 Add the "src-kerberosIV" collection. 1997-09-24 03:54:44 +00:00
jkh
cad33adc3c By popular request, change the default suggested value for CFLAGS
and also note that COPTFLAGS is _just_ for the kernel and CFLAGS just
for userland.
1997-09-10 13:35:33 +00:00
joerg
1e0e90c114 src/share/doc -> doc 1997-09-07 16:44:02 +00:00
jdp
4caef5035f Add cvsup.ca.FreeBSD.org. 1997-09-05 04:59:22 +00:00
jdp
b24b4b61a3 "Stable" now means RELENG_2_2. 1997-09-03 20:40:13 +00:00
jdp
3a86174127 Agnus Dei, qui tollis peccata mundi, dona eis requiem sempiternam. 1997-08-18 00:06:48 +00:00
jdp
b4899c9819 Add new CVSup mirror sites. 1997-08-17 20:26:36 +00:00
jdp
6bdf75eb87 Add cvsup2.ua.freebsd.org.
Rename the MIT mirror to cvsup3.freebsd.org.
1997-08-07 05:12:41 +00:00
asami
e18346f544 Add new ports-german collection. 1997-07-31 09:38:00 +00:00
jdp
cc3fd36cde Add cvsup.uk.freebsd.org. 1997-07-31 04:40:11 +00:00
jdp
273da65c84 Update the list of CVSup mirror sites. 1997-07-30 15:57:35 +00:00
jdp
eee6ff364e Add a warning about how to add ports collections to this cvsupfile
(and how NOT to add them).
1997-07-22 03:03:13 +00:00
bde
2460dddefe Implemented `-c command'.
Fixed bitrot (__dead went away; EOF is now wrong for the getopt failure
value).

Moved sleep command to the end of the main loop to avoid mismatch between
main loop and the report loop.  There is an extra iteration that could be
used to calibrate the loop overhead, but was used to report wrong results.

Fixed usage message.
1997-06-29 22:43:01 +00:00
alex
3413120a8f Typo police. 1997-06-18 00:35:53 +00:00
bde
d01fed8816 Updated serial console options. 1997-06-09 05:38:41 +00:00
jmz
cdca8a41e6 The 'wormcontrol select' command no more exists. 1997-05-19 17:35:57 +00:00
jdp
395d021a45 Include the new "src-contrib-crypto" collection. 1997-05-19 17:22:52 +00:00
jkh
c85cda9536 mkisofs.new -> mkisofs (whoops! just noticed this) 1997-05-14 09:39:22 +00:00
andreas
15e8d145ec synchronize with bsd.doc.mk (long outstanding fix)
PR:		closes docs/3479
1997-05-03 19:58:39 +00:00
asami
cf49bb5867 Add ports-converters and ports-textproc targets. 1997-04-27 00:36:47 +00:00
danny
d3efe09312 Suggested by: David Nugent
Change the name of ppp.disabled to ppp.deny for consistency with
at.deny and friends.
1997-04-16 02:10:22 +00:00
asami
ba2e0ac267 Add comments about overridable MASTER_SITE_* variables.
Suggested by: Narvi <narvi@haldjas.folklore.ee>
1997-04-15 08:16:44 +00:00
danny
426c0ef54f List of users who may not use pppd in system password logins, and a
sample list of acceptable shells.
1997-04-15 07:15:15 +00:00
bde
08375adf47 Removed bogus unused #include. 1997-04-13 11:31:20 +00:00
bde
e8809b8213 Removed bogus unused #include. 1997-04-13 11:24:29 +00:00
bde
c67cff8287 Updated to use new MOD_SYSCALL() and MOD_DISPATCH() macros.
Removed bogus unused #include and unused #includes.
1997-04-13 11:10:40 +00:00
jkh
de1f14eff0 Add a -b option to make the resulting CDROM image bootable
(requires new mkisofs 1.10 port).
1997-04-13 06:43:58 +00:00
dufault
ad12cf6735 Make MOD_* macros almost consistent:
Use the name argument almost the same in all LKM types.  Maintain
the current behavior for the external (e.g., modstat) name for DEV,
EXEC, and MISC types being #name ## "_mod" and SYCALL and VFS only
#name.  This is a candidate for change and I vote just the name without
the "_mod".

Change the DISPATCH macro to MOD_DISPATCH for consistency with the
other macros.

Add an LKM_ANON #define to eliminate the magic -1 and associated
signed/unsigned warnings.

Add MOD_PRIVATE to support wcd.c's poking around in the lkm structure.

Change source in tree to use the new interface.

Reviewed by:	Bruce Evans
1997-04-06 11:14:13 +00:00
jmg
aac0b8674c arg... add back the "stray" `-' (it is used by indent) 1997-04-03 00:36:26 +00:00
jmg
954eb439f8 remove a stray `-' 1997-04-02 11:26:59 +00:00
mpp
b201f0ea92 Remove some garbage text. 1997-04-02 00:09:14 +00:00
scrappy
a0cf674c26 Remove MAKEFLAGS example from /etc/make.conf...
Bruce points out that it breaks things if someone doesn't do a 'make depend',
but I just found out that it breaks 'make depend' itself :(
1997-03-31 05:26:39 +00:00
scrappy
016f3bea41 Add/document MAKEFLAGS into /etc/make.conf, using -j3 as example 1997-03-30 23:43:41 +00:00
joerg
066a6a67d2 top(1) has a tunable parameter for the hash size to hash the user
entries.  Mention it in make.conf.
1997-03-25 00:04:33 +00:00
mpp
c1320a8e18 Use the .An macro in the AUTHOR section. 1997-03-20 16:14:21 +00:00
mpp
6b9c4ed5a7 Update to use the .Rv macro now that I know it exists :-). 1997-03-19 21:08:48 +00:00
asami
dc977284bc Add ports-korean. 1997-03-06 06:18:51 +00:00
asami
7e791b7c81 Add ports-korean. 1997-03-06 06:05:22 +00:00
bde
ab11f13bae Synced with the C example copyright. Cosmetic except for removing
clause 3, which was removed on 1996/08/03 in the C example.
1997-02-28 10:09:09 +00:00
bde
744407bd04 Show where the version control id should go. 1997-02-28 09:35:50 +00:00
bde
7ab2093034 Changed the example copyright to be closer to the ones that we actually
use:
- don't put [your name] on a a separate line.  Most authors have shorter
  names than "The Regents of the University of California".
- don't repeat [your name].
1997-02-28 09:24:11 +00:00