chs
ec439fca35
avoid hanging during autoconf if no mouse is attached. fixes PR 11111.
...
based on code from Christian Groessler.
2003-09-28 17:25:07 +00:00
dsl
bae094fc39
man9 pages need to be .9 (not .0)
2003-09-28 16:36:53 +00:00
matt
4abc70c356
Deal with changed filename.
2003-09-28 16:30:18 +00:00
kent
1bea39944d
codec id for AD1985
2003-09-28 15:39:09 +00:00
kent
bda517788a
Note the driver supports ICH5.
...
Bump date.
2003-09-28 14:33:19 +00:00
kent
9c77f060e0
Note multi-channel support of auich(4)
2003-09-28 14:30:00 +00:00
kent
0eb86c3701
Support for 4ch/6ch audio playback.
2003-09-28 13:37:19 +00:00
dsl
eed203ed54
Simod has persuaded me to remove the 'sizeof (struct kinfo_drivers)' field.
2003-09-28 13:24:48 +00:00
dsl
2f28cd113e
Simon has persuaded me to remove the 'sizeof (struct kinfo_drivers)' field.
2003-09-28 13:18:41 +00:00
dsl
2a6d948efc
Simon has persuaded me to remove the 'sizeof kinfo_drivers' field.
2003-09-28 13:02:19 +00:00
tsutsui
1d11374304
Cast through (void *) to appease gcc3.
2003-09-28 13:02:18 +00:00
tsutsui
7f019aacfd
- Remove (commented out) options COMPAT_ULTRIX, which is not usable on mipseb.
...
- Fix (commented out) obsolete options MINIROOTSIZE.
- space/TAB cosmetics
2003-09-28 12:56:09 +00:00
martin
d15431449a
Include <compat/netbsd32/netbsd32_exec.h> to get the proper 32bit
...
sendsig etc. prototypes.
2003-09-28 10:27:25 +00:00
martin
a498dbd6b4
constify
2003-09-28 10:24:47 +00:00
wiz
dee5a1a9cd
Use more macros, fix a typo, drop trailing spaces, misc other fixes.
2003-09-28 10:23:22 +00:00
martin
b4f2a7e0a0
const poisioning.
2003-09-28 10:22:21 +00:00
martin
220f7552d7
Ansify and add missing include.
2003-09-28 10:16:41 +00:00
dsl
67dc3c2cc0
Add man 9 pages for do_setres{u,g}id, sort
2003-09-28 09:16:46 +00:00
dsl
a924e3a0d4
Add do_setres[u,g}id
2003-09-28 09:09:55 +00:00
tsutsui
6ca112843e
- Add MIPS_KSEG2_TO_PHYS() and MIPS_PHYS_TO_KSEG2() macro.
...
- Add definitions of the MIPS4 config register.
From Christopher SEKIYA.
2003-09-28 08:43:29 +00:00
tsutsui
026b6946bd
Fix typo. From Christopher SEKIYA.
2003-09-28 08:21:08 +00:00
tsutsui
e7500ac4b0
Add another R4000 CPU revision ID. From Christopher SEKIYA.
2003-09-28 08:16:51 +00:00
tsutsui
f9acb25560
Catch up with const sigset_t. From Christopher SEKIYA.
2003-09-28 08:11:47 +00:00
dent
5c05da90c6
Update some current versions.
2003-09-28 07:45:14 +00:00
tsutsui
992acd3aab
Add options COMPAT_16.
2003-09-28 07:39:48 +00:00
dent
361e05c696
update some links.
2003-09-28 07:22:09 +00:00
jdolecek
6c6463370e
add entry for Lava Quattro-PCI (4 port serial)
...
contributed in PR kern/22977 by Heison Chak
2003-09-28 07:22:01 +00:00
jdolecek
330360f6a6
regen: ROLAND MIDI devices and Piengineering Xkeys entry
2003-09-28 07:15:47 +00:00
jdolecek
eb3ff4c555
add usbdevs entries and umidi quirks for Roland USB MIDI devices
...
contributed in PR kern/18096 by Clemens Ladisch
2003-09-28 07:14:56 +00:00
jdolecek
b2122d6d98
add Piengineering Xkeys 58 entry, from kern/20838
2003-09-28 06:55:57 +00:00
mycroft
ca96c7c4ec
Remove some code that breaks AH tunnels completely. The comment describing
...
the purpose of this code appears to be on crack -- it's talking about
end-to-end authentication, but the purpose of an AH tunnel is NOT end-to-end
authentication; it's authentication of the tunnel endpoints.
NB: This does not fix the fact that IPsec leaks "packet tags."
2003-09-28 04:45:14 +00:00
dyoung
6cac03ae0e
Adapt ieee80211_ioctl.[ch] to suit NetBSD. NetBSD and FreeBSD have
...
the least in common here, so I have not concerned myself with
compatibility.
2003-09-28 02:40:14 +00:00
dyoung
c059ea0028
More NetBSD-FreeBSD compatibility changes in the pattern
...
#ifdef __FreeBSD__
/* FreeBSDism */
#else
/* NetBSDism */
#endif
An important and non-obvious change is in ieee80211_mgmt_output,
#ifdef __FreeBSD__
KASSERT(m->m_pkthdr.rcvif == NULL, ("rcvif not null"));
#endif
Because NetBSD mbufs are not bzero'd like FreeBSD's, we cannot
count on rcvif == NULL.
2003-09-28 02:35:20 +00:00
mrg
52b4a4af1d
from Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>:
...
- if_bcereg.h should only have register definitions, so declarations
of softc structure etc. should be in if_bce.c.
- The types of DMA descriptors should be u_int32_t, not unsigned long.
- netinet headers are not required here.
- Values passed via bce_tx_ring should also be byte-swapped.
- byte-swapping is not needed for bus_space access.
from me:
- KNF
- mark all magic numbers with /* MAGIC */ so they can be identified at
some point. there are 33 in total though many appear to be the same
value, or related (eg, the 6 emac points.)
leaves these issues:
- RX pre-packet headers need to be byte-swapped or not?
- PAGE_SIZE bytes are allocated for both TX and RX DMA ring descriptors,
but they should be 1024 (== sizeof(struct bce_dma_slot) * N[TR]XDESC).
- the mcast filter.
2003-09-28 01:03:07 +00:00
cl
ea7f5f55b4
fix fmovem argument reference
2003-09-28 00:15:13 +00:00
cl
af0728fff5
catch up with const sigset_t
2003-09-28 00:07:50 +00:00
cl
944c9c43ab
catch up with const sigset_t and const ksiginfo_t
2003-09-28 00:04:52 +00:00
mycroft
ad3b20a692
A nit I ran into while copying this code for something else...
2003-09-27 23:10:47 +00:00
matt
117653c214
Since this a signal trampoline #2 , make that's in the file name.
2003-09-27 21:43:29 +00:00
is
d774eeb6ea
Bring some stuff up-to-date. To be continued.
2003-09-27 21:32:12 +00:00
sjg
d388dcd1a3
Implement :[] modifier to allow picking a range of words out of a variable.
...
Also :tW and a W flag to :C and :S to allow treating value as a single word.
Add unit tests for the above, and fix some corner cases.
Based on patches supplied by Alan Barrett <apb@cequrux.com>
2003-09-27 21:29:37 +00:00
simonb
47d4b67a20
Use uintN_t in code example instead of u_intN_t. Agrees with current
...
standards (and more importantly Klaus too :-).
2003-09-27 21:17:31 +00:00
he
772b1d9073
Allow kernels without the haltwo driver configured to build, i.e.
...
make the driver optional by adding the haltwo attribute.
2003-09-27 21:11:21 +00:00
is
23074d4396
pregenerate grf_ultms.c, so that gspa isn't needed during kernel build
2003-09-27 20:52:59 +00:00
is
3af256db77
PPC_OEA is in std.amigappc
2003-09-27 20:51:54 +00:00
cl
2f20c17423
make gcc3's `deprecated use of label at end of compound statement' go away
2003-09-27 20:16:59 +00:00
cl
3f16119f55
Cast through (void *) to appease gcc3.
2003-09-27 20:01:58 +00:00
mhitch
3400c43ec7
Add <string.h> include for memcpy.
2003-09-27 19:35:14 +00:00
mhitch
28527002f8
Cast through (void *) to appease gcc3.
2003-09-27 19:34:17 +00:00
dsl
fde7103b90
Add KERN_ROOT_PARTITION and KERN_DRIVERS
2003-09-27 19:09:10 +00:00