Peter Wemm
e9feccdcb4
Remove #if NISA > 0 - this is best done by the configuration process.
...
It had a heap of unreferenced stuff if there was no isa configured in the
system.
1999-12-21 13:55:46 +00:00
Peter Wemm
5a81d0a50b
Only compile gusc for isa (the #if NISA inside gusc effectively covers
...
the whole file)
1999-12-21 13:53:49 +00:00
Jeroen Ruigrok van der Werven
7bf92e055d
Fix a typo which I cannot believe I missed after rereading this text
...
about 6-7 times prior to commit.
Reported by: sheldonh
1999-12-21 11:55:44 +00:00
Yoshinobu Inoue
f7503444cf
also, changed prototype of pr_rthdr(), as my previous fix
...
for netstat/route.c
1999-12-21 11:28:27 +00:00
Yoshinobu Inoue
49302f437a
Added missing declaration for argment specification at pr_rthdr(),
...
caused by my previous patch, sorry.
Also, changed its var name from 'af' to 'wid_af', to avoid confusion with
global var 'af'.
1999-12-21 11:25:30 +00:00
Jeroen Ruigrok van der Werven
5e4614fe95
Properly manify this manpage.
1999-12-21 11:25:10 +00:00
Sheldon Hearn
34ada08b62
Document allscreens_flags. This commit perpetuates the i386-centric
...
nature of this manual page. :-(
PR: 15066
Reported by: Andy Farkas <andyf@speednet.com.au>
1999-12-21 11:22:06 +00:00
Jeroen Ruigrok van der Werven
7ec9b49533
Properly manify this manpage.
...
Fix some spelling mistakes and typo's inspired by Nicholas' initial
PR submission.
PR: docs/15597
Submitted by: Nicholas Esborn <nick@flatlan.net>
1999-12-21 11:19:32 +00:00
Eivind Eklund
369dc8ceb8
Change incorrect NULLs to 0s
1999-12-21 11:14:12 +00:00
Sheldon Hearn
faf052a79e
Use more thorough redirection to make the impact of allscreens_flags
...
more comprehensive. Previously, at least colour changes were not
applied to all virtual consoles.
PR: 15066
Reported by: Andy Farkas <andyf@speednet.com.au>
Submitted by: yokota
1999-12-21 10:53:04 +00:00
Sheldon Hearn
722636354c
Add an explicit warning against copying this file into /etc/, since
...
work-arounds for the ".: Out of file descriptors" problem (see
PR 13724) are taking longer than expected to come to fruition.
1999-12-21 10:46:41 +00:00
Ollivier Robert
aa50282cd1
Fix a bug where a pointer would be one character too far after putting
...
a '\0' at the end of a string.
Submitted by: Martin Birgmeier <Martin.Birgmeier@aon.at>
1999-12-21 10:17:36 +00:00
Yoshinobu Inoue
c64893b10c
define WID_DST6 and WID_GW6 and use them only for IPv6, to keep IPv4 related
...
information in 80 columns.
TODO: IPv6 related information is not likely to be kept in 80 columns, anyway.
Some more print modes could be added,
but what is the priority between those modes?
-print out all information even if they don't fit into 80 columns
-strip off some information to fit them into 80 columns
Reviewed by: markm
1999-12-21 09:31:14 +00:00
Peter Wemm
684fb19e34
Extract a list of extra isa pnp modem ID's from NetBSD and OpenBSD. Some
...
of these are bound to have a PNP05xx compatid, but there's no easy way to
tell. Since it's just an ID list and uses the pnp header's description
strings rather than encoding strings here, it doesn't seem to be too
expensive to err on the safe side.
1999-12-21 09:16:03 +00:00
Sheldon Hearn
9a73cc73e9
Fix cut'n'paste niggles in previous commit.
1999-12-21 08:57:58 +00:00
Cameron Grant
9035ec00a0
minor cleanup
...
Parts Submitted by: Ville-Pertti Keinonen <will@ztango.com>
1999-12-21 08:43:28 +00:00
Michael Haro
f662a816e4
make previous commit's format match rest of file
1999-12-21 08:39:26 +00:00
Michael Haro
e87f5a7464
add default service (other) entries
...
Reviewed by: markm (in concept)
1999-12-21 08:36:10 +00:00
Joerg Wunsch
e34c71ea40
Add a flag to disable FIFO probing. The code seems to have a chance of
...
misdetecting FIFO capabilities, at least on my girlfriend's Thinkpad 755,
the driver doesn't work using the FIFO.
While i was at it, i (partially) fixed option FCC_YE since it would no
longer have compiled at all under -current. I've also made an attempt
to document the device driver flags value (ab-)used internally by this
option.
RELENG_3 candidate, but with a slightly different patch there (will go
to jkh in email).
1999-12-21 08:33:03 +00:00
Warner Losh
5882e70cb6
Delay creation of threads until after the idle thread is created, more
...
or less. This is a kludge because there is no support for delayed
creation of threads early in the boot process.
NEWCARD new boots and the thread process starts and is visible from
ps.
Now, on to dev/pccard.
1999-12-21 08:32:15 +00:00
Eivind Eklund
6835a896e2
Lose explict initialization of mouse to {0}; this gave a warning, and the
...
implict initialization guaranteed by ISO C give the same result.
1999-12-21 08:29:35 +00:00
Eivind Eklund
4cb867eea6
Incorrect uses of NULL changed to 0
1999-12-21 08:24:35 +00:00
Eivind Eklund
568d8f8e26
Garbage collect oltr_pci_shutdown
1999-12-21 08:21:36 +00:00
Eivind Eklund
2046577307
Remove unused variable
1999-12-21 08:20:36 +00:00
David E. O'Brien
7c815b0db8
Fix bogus initialization of using a sledge hammer to quite -Wall, bad
...
indention, and size issue between 32 and 64bit machines.
Submitted by: bde
1999-12-21 07:41:07 +00:00
Chris Costello
1b900f573c
Fix a typo that was doing something kind of silly, and that is initializing
...
the creation time for files to the uninitialized value:
vap->va_ctime = vap->va_ctime;
Changed to what was intended, assigning it to the modification time (thus
making all three values of access time, modification time and creation time
the same thing).
Reviewed by: grog
1999-12-21 06:29:00 +00:00
David E. O'Brien
78f79916e1
What was I smoking? Use the proper form of the library names.
1999-12-21 06:19:03 +00:00
Cameron Grant
637e117737
don't use the sbpro mic vol register during init on ess cards; it causes
...
feedback and we use the native one elsewhere.
1999-12-21 06:18:03 +00:00
Joseph Koshy
1a93522d65
Add entries for two cities in India.
1999-12-21 05:22:43 +00:00
Julian Elischer
5129159789
Manual page style work.
...
Submitted by: Alexey Zelkin <phantom@FreeBSD.org>
thanks!
1999-12-21 01:25:21 +00:00
David E. O'Brien
bedf424beb
Forgot a library.
1999-12-20 22:57:49 +00:00
David E. O'Brien
293c83c857
Add needed 3.x libraries from 3.4-RELEASE.
1999-12-20 22:57:12 +00:00
Justin T. Gibbs
038fc50e5a
Correct an "argument reversal" bug that could cause commands requed from
...
the input fifo to be returned as successful and frozen. Most, if not
all, peripheral drivers do not check the qfrozen bit for successfully
completed commands, so the result would not only be lost commands, but
devices locked out from receiving commands. This was a bad bug that
crept in two or three months ago during some target mode work.
1999-12-20 21:32:32 +00:00
Brian Somers
1b365e7039
Fix my '#'-at-end-of-lines change, spammed by a subsequent commit.
1999-12-20 20:47:58 +00:00
Peter Wemm
99c215c08b
Add SUP2070 (Diamond SupraExpress 56i)
...
Submitted by: Kenneth Wayne Culver <culverk@wam.umd.edu>
Add MOT4560
Obtained from: wollman
1999-12-20 20:31:23 +00:00
Brian Somers
687d9f5709
Use getpwuid()->pw_dir instead of $HOME when expanding ``~''.
1999-12-20 20:30:47 +00:00
Brian Somers
8b50b30fa7
Use getpwuid() instead of getlogin() in ``allow users''.
1999-12-20 20:30:40 +00:00
Brian Somers
ef0a48491b
Add missing linefeed.
1999-12-20 20:30:35 +00:00
Brian Somers
dbde41c0b7
Cosmetic: clean up some parenthesis confusion
1999-12-20 20:30:30 +00:00
Brian Somers
9409953d84
Handle comments at the end of lines.
1999-12-20 20:30:25 +00:00
Brian Somers
c39aa54ec8
Notice and warn about unterminated quoted strings in commands.
...
The entire command is ignored if the syntax is invalid...
1999-12-20 20:30:02 +00:00
Brian Somers
dae8dd31bf
Implement mbuf allocation internally by maintaining 8 buckets of
...
different sized mbufs, and mallocing them in chunks of 20 mbufs
at a time.
This improves back-to-back throughput by between 7 and 8%
1999-12-20 20:29:51 +00:00
Brian Somers
26af0ae966
Cosmetic: Make struct mbuf more like kernel mbufs.
1999-12-20 20:29:47 +00:00
Matthew Dillon
8f95b97072
Reimplement buf_daemon / getnewbuf() interaction for dealing with
...
stressful situations. buf_daemon now makes a distinction between
being woken up and its sleep timing out, and as a consequence is now
much better able to dynamically tune itself to its environment.
Reviewed by: Alfred Perlstein <bright@wintelcom.net>
1999-12-20 20:28:40 +00:00
Daniel C. Sobral
92dd206086
configApache does not exist anymore.
...
PR: 9582
Submitted by: Stephan Lagerholm <istephan@unilog.se>
1999-12-20 19:22:57 +00:00
Eivind Eklund
1dc60b24f0
Lose a register declaration to avoid a warning
1999-12-20 18:43:04 +00:00
Eivind Eklund
a6b174a83b
Include vm/vm_extern.h to get at prototypes
1999-12-20 18:26:58 +00:00
Eivind Eklund
874fa3e43e
Eliminate unused variables
1999-12-20 18:26:02 +00:00
Eivind Eklund
6357e7b507
Make m_print const correct (avoids a warning)
1999-12-20 18:10:00 +00:00
Eivind Eklund
74864123b0
GC unreferenced code (to avoid warnings)
1999-12-20 18:05:01 +00:00