Commit Graph

97937 Commits

Author SHA1 Message Date
wiz
10b0b6bce0 de-register 2002-06-02 22:17:37 +00:00
wiz
2f6c445df5 Improve mdoc, and correct the example of how to create mixerctl.conf. 2002-06-02 19:07:25 +00:00
manu
a808ca7f07 Now support per-signal signal trampolines. 2002-06-02 19:06:02 +00:00
jmcneill
3d886831b0 Remove clause #3 (forgot to remove it before the original commit) 2002-06-02 19:05:09 +00:00
jmcneill
8ebbe63269 Fix typo. 2002-06-02 19:04:10 +00:00
jmcneill
17f5e9e8f4 Add documentation for mixerctl.conf(5) 2002-06-02 18:57:11 +00:00
jmcneill
29ed807363 mixerctl.conf(5) documentation. 2002-06-02 18:55:08 +00:00
seb
2c69553625 Support Titan PCI-800L, a 8 serial puc card, from PR 17140.
Reviewed/approved by veego@ and martin@.
2002-06-02 18:43:27 +00:00
jmcneill
fdbb6f9c72 Add mixerctl rc.d script. 2002-06-02 18:38:35 +00:00
jmcneill
56d95e6efe Add mixerctl script. 2002-06-02 18:37:45 +00:00
seb
c5ad00acc6 regen for Titan PCI-800L. 2002-06-02 18:37:25 +00:00
jmcneill
b055b3e3e4 Add boot script to load mixer settings from /etc/mixerctl.conf, if present.
This allows one to preserve mixer settings across reboots by running:
  mixerctl -a >/etc/mixerctl.conf
2002-06-02 18:36:46 +00:00
jmcneill
419bcc2917 Fix the mixer controls to work a bit better. 2002-06-02 18:33:06 +00:00
seb
491c3ef8b6 Add product Titan PCI-800L aka VSCom PCI-800L, a 8 serial puc card, from PR
17140.
Reviewed/approved by veego@ and martin@.
2002-06-02 18:32:11 +00:00
pooka
5e4c038a45 Reflect bsd.doc.mk rev 1.52 here, and make sure that ROFF uses MACROS.
This has the effect of the postscript output actually being readable.
2002-06-02 17:40:44 +00:00
tsutsui
9a006c64a6 Enable "kern-GENERIC" by default, otherwise "Full installation" will not
extract any kernel sets.
2002-06-02 17:28:35 +00:00
tsutsui
e66a5b39e8 Don't call toggle_getit() for X11 fonts and servers in md_set_no_x().
They are disabled by default.
2002-06-02 16:01:00 +00:00
itojun
93c82f7945 correct thirdparty RCS tag 2002-06-02 15:50:40 +00:00
itojun
3a544704fb member of mrtstat are u_long, so %lu is more appropriate than %ld. 2002-06-02 15:45:58 +00:00
itojun
e0280bbb53 KNF 2002-06-02 15:25:42 +00:00
itojun
5ecb76484a missing initialization of sockaddr. from deraadt 2002-06-02 15:17:17 +00:00
zuntum
0c075655ba Polish translation of 'option to leave passwd.conf unchanged,
particularly for upgrading'.
2002-06-02 15:05:24 +00:00
drochner
deb9ae080c update uvm_page_physload() description for "waitok" and "nsegs"
obeyed now, and clarify "rlist" initialization.
2002-06-02 14:59:11 +00:00
wiz
ce2e5815e6 Wording and grammar improvements. 2002-06-02 14:56:47 +00:00
drochner
d2b9876081 move initialization of the "struct pglist" returned by uvm_pglistalloc()
from the calling code into uvm_pglistalloc() itself for consistency
and easier error handling
2002-06-02 14:44:35 +00:00
itojun
589e4e32b8 typo 2002-06-02 14:14:04 +00:00
itojun
0b9753daf3 have an option to leave passwd.conf unchanged, particularly for upgrading.
From: Tetsuya Isaki <isaki@par.odn.ne.jp>

XXX translation needed
2002-06-02 14:12:54 +00:00
itojun
89f9a04932 missing memset for sockaddr. from deraadt 2002-06-02 13:50:17 +00:00
itojun
a3a7b3dc05 missing memset() for sockaddr. from deraadt 2002-06-02 13:47:02 +00:00
wiz
835deee1f9 Document ipkdb_trap based on comments by ws. 2002-06-02 11:21:53 +00:00
isaki
53175db820 Add x68k stuff. 2002-06-02 10:44:30 +00:00
enami
461e42e9ef Collect random number from AMD 768MPX power management controller. 2002-06-02 02:44:27 +00:00
gson
a257b81df8 The logic in audio_poll() was incorrect in full duplex mode;
among other things, it behaved as if full-duplex audio devices
were always ready for writing.  Also commented the code in case.
This fixes PRs kern/11179 and kern/13829.
2002-06-02 02:00:30 +00:00
lukem
7026bf4ede Use SLIST_*() instead of accessing slh_first,sle_next directly.
XXX: this program currently doesn't parse macros that cross the EOL with \
(there are a couple in sys/dev/scsipi/scsi_message.h).
with that issue temporarily worked around, this change generates the
same output as the version of aicasm without this change.
2002-06-02 01:20:36 +00:00
christos
310f799ea7 forward declaration for struct utmp. 2002-06-02 00:00:27 +00:00
lukem
06de426449 SIMPLEQ rototill:
- implement SIMPLEQ_REMOVE(head, elm, type, field).  whilst it's O(n),
  this mirrors the functionality of SLIST_REMOVE() (the other
  singly-linked list type) and FreeBSD's STAILQ_REMOVE()
- remove the unnecessary elm arg from SIMPLEQ_REMOVE_HEAD().
  this mirrors the functionality of SLIST_REMOVE_HEAD() (the other
  singly-linked list type) and FreeBSD's STAILQ_REMOVE_HEAD()
- remove notes about SIMPLEQ not supporting arbitrary element removal
- use SIMPLEQ_FOREACH() instead of home-grown for loops
- use SIMPLEQ_EMPTY() appropriately
- use SIMPLEQ_*() instead of accessing sqh_first,sqh_last,sqe_next directly
- reorder manual page; be consistent about how the types are listed
- other minor cleanups
2002-06-01 23:50:52 +00:00
bjh21
b3dd6235ca Since we don't have a wsmouse attachment for the ARM7500 PS/2 mouse, turn
on the pre-wscons device for it instead.  This allows X to work on my NC.
2002-06-01 23:43:48 +00:00
bjh21
40a8771d1e Using -N (OMAGIC) when linking the kernel seems to avoid BtNetBSD's doing
stupid things when loading it on an NC, so do that.  Fixing (or replacing)
BtNetBSD would be better, of course.
2002-06-01 23:24:15 +00:00
kim
ab13a2b0d3 Provide a switch to turn off envelope recipient canonicalization.
Canonicalizing the recipient is usually undesirable for sites that
have local delivery distributed over multiple machines.
2002-06-01 22:55:04 +00:00
itojun
aa309c7dc2 regen 2002-06-01 21:03:37 +00:00
itojun
e35096b705 new ne0 pcmcia pccard: corega EtherII PCC-TD
PR 17134, From: <fujiwara@f.pyon.org>, Kazunori@netbsd.org, Fujiwara@netbsd.org
2002-06-01 21:03:14 +00:00
manu
a7fd741e36 Emulate PR_SULIMIT, PR_SID and PR_SUMASK for sproc() 2002-06-01 20:26:42 +00:00
itojun
3ec91458b1 not sure if it is right, but svr4_sigcode.s does not compile on i386 without it.
PR 17121
2002-06-01 20:13:42 +00:00
bouyer
10813a14bc Remove the "set south-bridge's enable bit" code. It doens't seems to make
any difference for rev 0xc3 controllers, and hang on 0xc4 controllers.
Fixes kern/16954
2002-06-01 18:07:42 +00:00
gson
ca67f8471a spl botch in midipoll() when sc->dying 2002-06-01 17:54:21 +00:00
bouyer
b5e85ff91e Note Sundance ST201 support 2002-06-01 17:38:53 +00:00
bouyer
3a63a4122e Note DFE-580TX 2002-06-01 17:33:21 +00:00
bouyer
dc66b51bca When the chip gets a transmit underrun, the driver resets the chip, which
cause the link to go down for several seconds on my Dlink DFE580-TX (quad-port
DL1002). This behavior is unacceptable, especially as the driver usually
gets several underrun at once, causing the link to be almost unaviable
for several 10s of seconds.
Bump the default transmit threshold to 1504 bytes to avoid transmit underrun.
2002-06-01 17:24:38 +00:00
bouyer
208589bfca On a Dlink DFE580-TX (DL-1002), attempting to transmit packets while the link
is down cause the chip to create an IE_UpdateStats condition which can't be
cleared, causing the driver to enter an interrupt loop.
Workaround: mask IE_UpdateStats
2002-06-01 17:20:13 +00:00
lukem
0707a91ae6 fix problems noted by Love <lha@stacken.kth.se> on current-users@ :
- add bpf0 to MAKEDEVTARGETS
- set dhclient-script and binstall perms to 555
2002-06-01 16:36:09 +00:00