Commit Graph

15992 Commits

Author SHA1 Message Date
dg
e27a5690fe Added description of "noatime" option. 1996-09-08 13:28:12 +00:00
phk
367da4b2c8 Various cleanups for remanents of devconf. 1996-09-08 10:44:18 +00:00
sos
4037496077 Fixed another little both in the devconf removal. 1996-09-08 10:28:23 +00:00
adam
84c0874422 let the "exit" command return status when it is implicit 1996-09-08 03:12:22 +00:00
jfieber
c748892b58 A catalog for sgmls(1). This maps public identifiers to system
identifiers.
1996-09-08 02:58:28 +00:00
jkh
43a63d9cff Correct a bogon.
Submitted-by: jmb
1996-09-08 02:50:17 +00:00
jfieber
c7663f785b Turn on ISO and transpec. 1996-09-08 02:43:39 +00:00
jfieber
67e962a95f Add usr/share/sgml/transpec 1996-09-08 02:41:51 +00:00
jfieber
a9173b3760 This commit was generated by cvs2svn to compensate for changes in r18148,
which included commits to RCS files with non-trunk default branches.
1996-09-08 02:37:40 +00:00
jfieber
ecd88d3607 Translation specifications for instant(1). 1996-09-08 02:37:40 +00:00
jfieber
c6f20da17c Turn on instant. 1996-09-08 02:00:37 +00:00
jfieber
38d1297524 Tool for manipulating SGML document instances. Replaces sgmlsasp. 1996-09-08 01:55:10 +00:00
jfieber
0f9d90ebea This commit was generated by cvs2svn to compensate for changes in r18145,
which included commits to RCS files with non-trunk default branches.
1996-09-08 01:55:10 +00:00
jkh
c80572fdca Various minor improvements. 1996-09-08 01:39:25 +00:00
jkh
f563f9b585 Finish what phk started here in removing devconf. The ATAPI_STATIC case
was still broken, as was the normal case since atapi_attach() was called
internally.
1996-09-08 01:31:27 +00:00
pst
8a74fcec83 long live groff 1996-09-08 01:30:16 +00:00
pst
feea886ab3 ...long live groff 1996-09-08 01:27:58 +00:00
pst
cc80b2b6b6 Initial revision 1996-09-08 01:21:19 +00:00
pst
e9f0e5e59a Groff is dead... 1996-09-08 01:09:04 +00:00
pst
8bd2657c7f Look for old "man" macros in tmac.groff_an 1996-09-08 00:37:30 +00:00
pst
2bb0d68ddf Add setlocale LC_CTYPE and 8 bit clean ctype support.
Original author: ache
1996-09-08 00:34:51 +00:00
pst
685be52a70 Workarround for gcc 2.60 expression evaluation bug. 1996-09-08 00:34:04 +00:00
pst
38b892a53a Improve .Os macro support (parts obtained from 4.4Lite2 and NetBSD)
Add the .Fx macro for specifying FreeBSD releases.

Add a bunch of missing standards to the .St macro.

Add Version 1 AT&T UNIX to .At macro

Updated the ".St -ansiC" macro to report "ISO 9899: 1990 (``ISO C'')"
You can also specify -iso9899, or -isoC.  Use -ansiC-89 if you still need
the X3.159-1989 string reported.

Original author: mpp
1996-09-08 00:33:24 +00:00
pst
00056c9471 Manual page cleanups.
Original author: mpp
1996-09-08 00:32:33 +00:00
pst
a9cee8f96e Install additional S and L text fonts, needed for BSD doc formatting.
Original author: ache
1996-09-08 00:30:25 +00:00
pst
0d8a61c2c4 Add Russian language / koi8-r font support.
Original author: ache
1996-09-08 00:28:32 +00:00
pst
129fbb1250 Add psroff command 1996-09-08 00:26:24 +00:00
peter
c8cddce120 Resync statfs struct with sys/mount.h. 1996-09-07 21:50:31 +00:00
bde
4ac8c50b29 Fixed another easy case of const poisoning in the kernel. Cosmetic.
(A pointer to a const was misused to avoid loading loading the same
value twice, but gcc does exactly the same optimization automatically.
It can see that the value hasn't changed.)
1996-09-07 21:47:53 +00:00
bde
56630885e0 Preserve volatility in casts of np->reg. Cosmetic. 1996-09-07 21:27:24 +00:00
bde
984fd335eb Remove boot2 when the size test fails so that rebuilding without fixing
the problem doesn't bogusly succeed.

Print size failures to stderr instead of stdout and don't print bells
and whistles.
1996-09-07 21:16:44 +00:00
peter
9106ad3301 Add dequeue script for the record. 1996-09-07 21:09:41 +00:00
bde
1c3b577d08 Saved 48 bytes (46 before padding) using assorted nano-optimizations:
- avoiding strcmp("?" saved 12 bytes.  gcc inlined the strcmp()
  but this takes as much or more code as a function call.  The
  inlining was bogus because the strcmp() in the bootstrap isn't
  standard.

- using a char instead of an int for the boolean `last_only' saved 8
  bytes.  Booleans should usually be represented as chars on the i386.

- simplifying the return tests saved 9 bytes.

- using putc instead of printf to print a newline saved 3 bytes of code
  and 2 bytes of const data.

- avoiding `else's by always doing the else clause and fixing it up
  saved 4+8 bytes.
1996-09-07 21:06:43 +00:00
peter
ceb03294dd make it slightly less verbose while creating queue entries.. 1996-09-07 21:06:19 +00:00
peter
85136fdd2a make the "-l logfile" option actually do something.. 1996-09-07 20:41:09 +00:00
bde
ae2d4189eb Saved 48 bytes (56 before padding) by moving a variable declaration.
gcc always generates large code for accesses to globals.  For locals
it only generates large code if there are more than 128 bytes of
locals.  It sorts scalar locals after array locals to pessimize for
space in the usual case when there are more (static) references to
scalars than to arrays.

Saved another 16 bytes (13 before padding) by adding a `continue'.

Fall-through tests normally save space, but here one of them made
gcc do space-unoptimal register allocation (it allocates ch in %bl
because preserving this register across function calls is "free",
but comparisions with %bl take one byte fewer than comparsions with
%bl).
1996-09-07 20:18:04 +00:00
peter
f3d5d92b3d Add a note about current local changes relative to the "official" release. 1996-09-07 20:17:13 +00:00
peter
5e3d4c723c Add freebsd-specific info file. 1996-09-07 20:14:36 +00:00
peter
c9bf73c078 After queueing deltas, send out an initial two mails since that will cover
99.9% of the cases at with out delay as before.
1996-09-07 19:50:48 +00:00
peter
fbca19d5a2 fts_children() returns NULL if there are no files. If there was a failure
then errno != 0.
1996-09-07 19:46:29 +00:00
sos
b2c425deed Fixed two small leftovers form PHK's mega devconf removal commit.. 1996-09-07 19:13:09 +00:00
ache
239d39549b Use /dev/mouse for default moused port
Add comment explanation how to turn mouse support on particular screen
(vidcontrol -m on)
1996-09-07 19:11:00 +00:00
ache
669fccfc07 Make moused actually work:
add sleep 20 before moused starts.
It allows all getties to activate screens.
1996-09-07 19:04:48 +00:00
peter
79ba94b99f - resync with configs running on freefall
- add ctm_conf.gnats from freefall
- add support for doing both the immediate mailout and the queued mailout.
- use "sendmail -odq -t" rather than "sendamil -t" to make it queue to
  the mailqueue rather than immediately begin transmission. This allows
  us to take advantage of our ordered dequeueing system without blowing
  WC's T1 to hell with a 50 part mailout in parallel.
- bump the max ctm size from 3MB to 10MB....  This is mainly for the fast
  list.
1996-09-07 18:48:52 +00:00
peter
a80e135e49 clean up some warts Bruce pointed out.
- no longer build or install libresolv.a, since we were immediately
   deleting it in afterinstall.
 - untangle $LIBDIR and $SHLIBDIR
1996-09-07 17:58:36 +00:00
nate
b50a4d6397 Disable 'suspend' as it tends to lockup computers with the current APM
driver.
1996-09-07 17:52:56 +00:00
nate
93ff18eabf Unused file. 1996-09-07 17:51:54 +00:00
nate
d2323e2b65 - Don't include <machine/laptops.h>. It was a kludge I should never
have imported.
1996-09-07 17:50:47 +00:00
nate
abcc6bffc7 APM_DSVALUE_BUS is no longer with the addition of the correct fix to
machdep.c.  We no longer walk on the data segment the BIOS sets up.
1996-09-07 17:41:22 +00:00
dyson
90e771f1d5 Fix a VOP_UNLOCK panic when using options DIAGNOSTIC during dismount. 1996-09-07 17:34:57 +00:00