Warner Losh
aac7dfeae8
Catchup from my holiday lull:
...
o libcrypt not a symlink.
o hw.sndunit -> hw.snd.unit
o burncd / kernel changes
o I386_CPU now mutually exclusive with all other CPU types.
2001-01-17 17:59:09 +00:00
Duncan Barclay
a07736d0f6
Take advantage of the fixes to the pcic code that allows multiple
...
active memory maps. This removes the need to change the memory
map from common to attribute every time a packet is sent/received.
This increases performance and decreases cpu load (ping times on
slow machines improve by about 1.5ms).
Move out the old common memory/attrbiute memory hack functions to a
new header file to tidy up the main code. I want to keep them available
for a while.
2001-01-17 17:55:00 +00:00
Andrey A. Chernov
24b01c2bd0
Activate Greek message catalog
2001-01-17 16:54:43 +00:00
Andrey A. Chernov
4d18cd83d1
Add Greek collate
...
PR: 24324
Submitted by: past@netmode.ntua.gr
2001-01-17 16:47:28 +00:00
Andrey A. Chernov
c6257e4afd
Add Greek keyboard
...
PR: 24324
Submitted by: past@netmode.ntua.gr
2001-01-17 16:27:47 +00:00
Andrey A. Chernov
51347d4e77
Add iso07 fonts
...
PR: 24324
Submitted by: past@netmode.ntua.gr
2001-01-17 15:57:22 +00:00
Andrey A. Chernov
74d7bac3c7
Add Greek support
...
PR: 24324
Submitted by: past@netmode.ntua.gr
2001-01-17 13:43:20 +00:00
Andrey A. Chernov
fd4d93e56c
Add Greek support
...
PR: 24324
Submitted by: past@netmode.ntua.gr
2001-01-17 13:30:16 +00:00
Andrey A. Chernov
9073168b1b
Add el_GR.ISO_8859-7
2001-01-17 13:15:46 +00:00
Peter Wemm
2ca37b5a4f
Add NEWCARD hooks. This seems to work just fine.
2001-01-17 12:31:59 +00:00
Ben Smithurst
6164dd8137
document ${KERNEL}
...
PR: 24404
Submitted by: Mike Meyer <mwm@mired.org>
2001-01-17 11:51:43 +00:00
Ruslan Ermilov
e39c397610
rstat(1) and rstat_svc(8) are the early versions of
...
the rup(1) and rpc.rstatd(8) manpages respectively.
2001-01-17 11:50:42 +00:00
Ben Smithurst
92fbe861c6
Actually add build.7 to the Makefile, 2 months late.
...
PR: 24405
Submitted by: Mike Meyer <mwm@mired.org>
2001-01-17 11:11:02 +00:00
Søren Schmidt
af152621e5
Add first cut support for the ATA100 capable VIA82c686b.
2001-01-17 09:22:13 +00:00
Ruslan Ermilov
c0f67a683a
man(7) -> mdoc(7).
2001-01-17 09:15:13 +00:00
Ruslan Ermilov
0985ff699a
mdoc(7) police: compact a few lists for better output.
2001-01-17 09:07:31 +00:00
Ruslan Ermilov
736bc1b8dd
mdoc(7) police: removed empty line (mdocNG does not like them),
...
columnate ENVIRONMENT variables.
2001-01-17 08:32:08 +00:00
John Baldwin
d2ef0cdab2
Sysinstall has been repocopied to src/usr.sbin/sysinstall and everything
...
now uses the sources found there.
2001-01-17 07:14:45 +00:00
John Baldwin
8cd2245c0e
- sysinstall now gets built as part of world, so don't throw in extra
...
commands to build sysinstall manually during release.
- Get the sysinstall help files from /usr/src/usr.sbin/sysinstall/help
rather than ${.CURDIR}/sysinstall/help.
2001-01-17 07:13:40 +00:00
John Baldwin
cad23515ec
Now that sysinstall lives in /usr/src/usr.sbin, we don't need to pull it
...
from /usr/src/release.
2001-01-17 07:11:05 +00:00
Bruce Evans
3b9a046dbe
Removed unused copy of ../mount/getmtopts.3.
...
Removed used copies of ../mount/getmntopts.c ../mount/mntopts.h. Use the
versions in ../mount directly like all other mount utilities.
Removed used copy of ../mount/pathnames.h. Use the version in ../mount
for free as a side effect of using the mntopts files there. We should
not use it at all, since the 2/3 of the definitions in it are in <paths.h>
and the other 1/3 should be in ../mountd/pathnames.h and is not used by
mount_ifs anyway.
2001-01-17 04:10:06 +00:00
Bruce Evans
6e3d19c8ff
Removed unused rotting copy of ../mount/mount.8. It should never have
...
been repo-copied.
2001-01-17 03:39:53 +00:00
John Baldwin
a0d195d235
sysinstall.8 lives in src/usr.sbin/sysinstall now and gets installed via
...
normal means, so remove the hack to install it.
2001-01-17 03:33:04 +00:00
John Baldwin
7893939f7a
Activate sysinstall.
2001-01-17 03:32:19 +00:00
John Baldwin
86cf061fe4
- We live in /usr/sbin now, so don't set special veriables to build a
...
static version that installs in /stand. Also, don't use an extra
before-install target to create /stand.
- Add missing $FreeBSD$.
- Fix dependencies to handle keymap.h. (*)
Submitted by: obrien (*)
2001-01-17 03:32:00 +00:00
Robert Watson
f0078215b7
o When returning NULL, return (NULL) instead of return (0).
...
Submitted by: jedgar
Obtained from: TrustedBSD Project
2001-01-17 02:40:39 +00:00
John Baldwin
324fffaed1
- Sort of lie and say that %eax is an output only and not an input for the
...
non-386 atomic_load_acq(). %eax is an input since its value is used in
the cmpxchg instruction, but we don't care what value it is, so setting
it to a specific value is just wasteful. Thus, it is being used without
being initialized as the warning stated, but it is ok for it to be used
because its value isn't important. Thus, we are only sort of lying when
we say it is an output only operand.
- Add "cc" to the clobber list for atomic_load_acq() since the cmpxchgl
changes ZF.
2001-01-17 02:15:11 +00:00
Peter Wemm
7f12c0b5df
The stallion.c pci driver is broken. Emit a warning if compiling LINT.
2001-01-17 01:21:08 +00:00
Peter Wemm
a1c9b755a7
Use pci_get_revid() rather than groping around the PCI register space
...
using the removed compatability register names. (this broke LINT)
2001-01-17 01:17:00 +00:00
Peter Wemm
10cf882b4f
Fix breakage unconvered by LINT - dont refer to undefined variables in
...
KASSERT()
2001-01-17 01:10:23 +00:00
Luigi Rizzo
ec97c79e30
Document data structures and operation on dummynet so next time
...
I or someone else browse through this code I do not have a hard
time understanding what is going on.
2001-01-17 01:09:40 +00:00
Peter Wemm
b348bd9392
Minor tweaks to get these to stop breaking LINT. They still dont work
...
and emit warnings, but we need to get the test coverage elsewhere.
2001-01-17 01:08:50 +00:00
Peter Wemm
8c2956e18d
Special case for compiling LINT - just give a warning and continue on.
...
At least we have a chance at getting test compile coverage for the rest
of the kernel now.
2001-01-17 00:47:46 +00:00
Peter Wemm
f266172d25
Remove unneeded (and compile-breaking) #include "alpm.h"
2001-01-17 00:38:06 +00:00
Luigi Rizzo
5da48f88bd
Some dummynet patches that I forgot to commit last summer.
...
One of them fixes a potential panic when bridging is used and
you run out of mbufs (though i have no idea if the bug has
ever hit anyone).
2001-01-16 23:49:49 +00:00
Ben Smithurst
892fc9c643
Minor grammar nit.
...
PR: 23742
Submitted by: Rich Morin <rdm@cfcl.com>
2001-01-16 22:41:25 +00:00
Ben Smithurst
9175520c91
SIGABRT is *not* the same as calling abort(), so don't claim that it is.
...
(abort() flushes all open stdio streams for one thing.)
PR: 24249
Submitted by: Edwin Groothuis <mavetju@chello.nl>
2001-01-16 22:25:26 +00:00
Ben Smithurst
c3f0a89530
Ooops, the -M and -N flags were already documented, though not very clearly.
...
Remove the old description in favour of the new description which lists the
-M and -N flags along with all the other flags. This is consistent with the
manual pages for ps, netstat, iostat, etc.
2001-01-16 22:09:33 +00:00
Ben Smithurst
a82684b6a2
document -M and -N flags.
...
PR: 24323
Submitted by: Jesse Monroy <opentrax@email.com>
2001-01-16 22:05:28 +00:00
Ben Smithurst
13d94cf612
The bit about sigpending not detecting any errors is a lie, it can return
...
EFAULT.
PR: 24360
Submitted by: Kenneth Ingham <ingham@i-pi.com>
2001-01-16 21:57:42 +00:00
Ben Smithurst
2300f00f4c
FreeBSD doesn't run named in a sandbox by default, so change a comment so it
...
doesn't imply we do.
2001-01-16 20:57:18 +00:00
Josef Karthauser
bb44f0089b
Deprecate the use of the CD_DRIVE, CDPLAY, DISC and MUSIC_CD environment
...
variables in favour of CDROM.
Discussed on: stable@FreeBSD.org
2001-01-16 20:31:53 +00:00
Dag-Erling Smørgrav
ffefd50ada
Add a sysvipc_enable variable that causes the SysV IPC modules to be loaded.
...
Reviewed by: dougb
2001-01-16 20:05:05 +00:00
Ruslan Ermilov
c49bc3edad
man(7) -> mdoc(7).
2001-01-16 17:29:42 +00:00
Ruslan Ermilov
734e1e3b2e
man(7) -> mdoc(7).
2001-01-16 17:04:17 +00:00
Matt Jacob
1b66199389
Add tags quirk for IBM DNES drives.
...
PR: 21139
Obtained from: campt@miralink.com
2001-01-16 17:02:16 +00:00
Ruslan Ermilov
e9f98cd047
man(7) -> mdoc(7).
2001-01-16 15:28:12 +00:00
Ruslan Ermilov
bd26f2dafc
man(7) -> mdoc(7).
2001-01-16 13:12:21 +00:00
Hellmuth Michaelis
b96f01353d
Enhance find_matching_entry_incoming() to check if the controller, on
...
which the call gets in, matches the one given in the entry section, or
-1 for any controller.
Submitted by: Oliver von Bueren <maillist@ovb.ch>
2001-01-16 13:10:51 +00:00
Ruslan Ermilov
9884911506
mdoc(7) police: fixed broken references.
2001-01-16 11:52:00 +00:00