summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2002-05-07Simplify multicast handling based on powerpc's gm.c and remove ether_cmp()Jason Wright
2002-05-077811 needs a short pause before setting up the DMA CSR during reset or itJason Wright
will hang during the first DMA operation on some machines.
2002-05-07minor style.jasoni
2002-05-07support TIOCLINUX ioctljasoni
- from NetBSD
2002-05-07Fix uvisor for what's currently in the treeNathan Binkert
2002-05-07Sync quirks with NetBSDNathan Binkert
2002-05-07Sync uvisor driver with NetBSD. This adds support for PALM4 devicesNathan Binkert
2002-05-07Less verbose. noticed by fgschNathan Binkert
2002-05-07Add url(4) and urlphy(4)Nathan Binkert
ok deraadt
2002-05-07Add a driver for Realtek RTL8150L based ethernet devicesNathan Binkert
From NetBSD
2002-05-07Add urlphy(4) which is used by url(4).Nathan Binkert
From NetBSD
2002-05-07move ether_crc32_le to if_ethersubr.c. Add ether_crc32_beNathan Binkert
2002-05-07Meant to commit only ulpt and committed everything. Most things weren't readyNathan Binkert
2002-05-07Sync ulpt driver with NetBSDNathan Binkert
2002-05-07Spring pmap cleaning:Miod Vallat
- update and fix comments - clean the batc code (still not used by default) - there was some KNF left to do - fix incorrect locking behaviour in pmap_remove_all() - fix incorrect pmap_remove_range() call which would cause the kernel to enter an infinite loop sometimes at shutdown - fix an off-by-one page loop in pmap_protect() This should bring the extra bits of stability I need to resume working on the compiler...
2002-05-06sync uaudio with NetBSDNathan Binkert
2002-05-06Increase MAXPHYS from 63K to 64K which brings it in line with all ourTodd C. Miller
other architectures and matches NetBSD-current. hugh@ OK
2002-05-06basic infrastructure for handling RSA with CRT parameters. Just need toJason Wright
figure out how p, q, dp, dq, and pinv fit into the context.
2002-05-06Try to deal with the pci shadow bus issue by disabling a specific chipNathan Binkert
revision of the CNB20HE that always seems to be involved in the shadow bus. This is definately not the right way to do things. The correct way is to try to figure out that the bus is being detected for the second time. ok deraadt
2002-05-06drop out of any intr fixup activities if was disabled in the config flagsMichael Shalayeff
2002-05-06tuner driver for the fms cards.Michael Shalayeff
attach radio at the fms(4), instead of a separate device, which would never work out fine. from Vladimir Popov <jumbo@narod.ru> rework the radio config stuff (radio at radiobus, instead of radio at radio), allowing to tag source files in the files.* files w/ radio attribute. from mickey@
2002-05-06typo in commentjasoni
2002-05-06- Only copy the significant bits of the result out (and make sure the bufferJason Wright
is long enough to handle it) and bzero the rest. - Increase key buffer sizes to 2048 bits.
2002-05-06typedef for proc * for portabilityNathan Binkert
2002-05-06Make more portable with NetBSDNathan Binkert
Whitespace sync with NetBSD
2002-05-06sync with NetBSDNathan Binkert
2002-05-06Sync with NetBSDNathan Binkert
2002-05-06regen.Peter Valchev
2002-05-06Match D-Link DE-660+, tested by drewc@rift.com, ok fgsPeter Valchev
2002-05-06new conversion functions from NetBSD for uaudioNathan Binkert
2002-05-05Use correct $NetBSD$Nathan Binkert
2002-05-05whitespace sync with netbsd.Nathan Binkert
2002-05-05Instead of returning a useless kernel space pointer for the rule thatDaniel Hartmeier
created the state from DIOCGETSTATE(S), return the integer rule number, Print rule number (if existant) from pfctl -vss. Suggested by Jeff Nathan.
2002-05-05fix panic triggered by using a 3.0 wsmoused on a 3.1 kernel, byMatthieu Herrb
checking that wsms_dev is not NULL before dereferencing it. ok jbm@
2002-05-04some space and tab cleanup.Federico G. Schwindt
2002-05-03disable ahc again for now, since it does not fit; ok miodPeter Valchev
2002-05-03Regen.Miod Vallat
2002-05-03Add more cards and device names, and print better looking probe messages forMiod Vallat
unknown cards.
2002-05-03ptrdiff_t and size_t fixes.Marc Espie
okay mickey@
2002-05-03no guarantee that ptrdiff_t is int and not long, so cast.Marc Espie
ok mickey@
2002-05-0382801CA/CAM works like previous models.Marc Espie
Suggested by csapuntz@, tested to work. Okay csapuntz@
2002-05-03LBA48 support.Grigoriy Orlov
Adopted from NetBSD by Alexander Yurchenko <grange@openbsd.ru>. costa@ ok.
2002-05-03le_ioasic.h is historyTodd C. Miller
2002-05-03Need a dummy tc_fb_cnattach() until we have real fb support onTodd C. Miller
TURBOchannel machines.
2002-05-02Oops, it's too early for this chunk of code... spotted by millert@.Miod Vallat
2002-05-02Add a type specifier for intrnames, eintrnames, intrcnt, and eintrcnt.Todd C. Miller
Without this, n_type in struct nlist ends up as N_UNDF for those symbols which makes vmstat -i unhappy. mido@ OK
2002-05-02Big TURBOchannel support catchup from NetBSD, part 1.Miod Vallat
A few local changes and tweaks remain. This bring DEC 3000 machines back in the game, but framebuffers are still not supported at the moment. Thanks to ericj@ and nate@ for supplying me a DEC 3000 for testing.
2002-05-02prefix structure members to avoid name clashes.Nathan Binkert
From NetBSD
2002-05-02use the gallant 12x22 font by default on screens that are moreMatthieu Herrb
than 960 pixels wide if !SMALL_KERNEL, like rcons does. Ok drahn@, mickey@, miod@.x
2002-05-02the exponent parameter is:Jason Wright
1. byte counted (not word count * 4 counted) 2. not normalized (we don't normalize anything yet, so no biggy) Increase maximum size of exponent to 2048 bits. (Better length checks coming soon)