summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-12-31Implement suspend/resume and creation of initially suspended threads.Otto Moerbeek
With this, java seems to be operational. Also make threads_ready non-static, which is needed for an upcoming diff. ok tedu@
2005-12-31Add AMD-8111 SMBus controller driver.Alexander Yurchenko
ok deraadt@
2005-12-31The Sony DSC-P41 it's actually UFI, not SCSI. Unfortunately (all?) DSCFederico G. Schwindt
cameras share the same product id, so toggle this behavior for revision 5.00 only for now. krw@ agrees.
2005-12-31spacingTheo de Raadt
2005-12-31we think we can now probe chips correctly. only print the register dumpTheo de Raadt
if we fail to attach a driver to a chip name. this means that if we incorrectly diagnose a chip, someone will have to compile a debug kernel. i think we are ready for this, but we will see what the next week brings.
2005-12-31add macros for the expansion ROM base address registerDavid Gwynne
ok brad@ grange@ fgsch@
2005-12-31regen.Federico G. Schwindt
2005-12-31sort and some cleanup.Federico G. Schwindt
2005-12-31add lots of comments. run the xeontemp probe stuff on other architectures asTheo de Raadt
well since we are seeing some of these crummy adm1021/maxim1617 clones on other architectures. (Intel specified that there was a sensor chip with a certain register layout on their Xeon processors. That register layout is a subset of the maxim1617, ie. without ID registers. I guess they wanted to be able to change them later. But the result is that just as the industry was starting to move towards all new chips having ID registers, Intel pushed them all the other way... and now lots of vendors make chips like this without ID registers. Typical vendor power politics.)
2005-12-31document -MM; ok djm@Kevin Steves
2005-12-31reyk, touching a file I am actively hacking on without talking to me is a ↵Theo de Raadt
serious mistake
2005-12-30add asbtm iic sensor; ok kettenis@Damien Miller
2005-12-30add i2c driver for Asus ASB100 sensors using register info from lm_sensorsDamien Miller
driver (Asus believe this chip is such critically important IP they won't release docs for it); feedback deraadt@ and kettenis@, ok kettenis@
2005-12-30Fix parse_prefix() for IPv4 addresses. Looks like fallout after IPv6 addition.Claudio Jeker
Now bgpctl show rib 129.128.5.191 works again.
2005-12-30Remove exitinng thread from the list of threads. ok tedu@Otto Moerbeek
2005-12-30regenJolan Luff
2005-12-30typoJolan Luff
2005-12-30Remove unused COMPAT_NETBSD32 block and get rid of register{32,64}_tTodd C. Miller
which are now unused. Tested and OK miod@
2005-12-30Currently sys/socket.h needs sys/types.h so add #include <sys/types.h> toClaudio Jeker
the list of necessary includes. Now the manpages match reality. OK mpf@ millert@
2005-12-30use queue.h macros for thread house keeping; make some vars non-staticOtto Moerbeek
and fix a bug in thread creation error path. ok tedu@
2005-12-30Properly detect AS99127F rev 1.Mark Kettenis
From Jonathan Fromer <jf@daimi.au.dk>.
2005-12-30Missing or incorrect header sizes bounds check; ``looks ok'' mickey@Miod Vallat
2005-12-30Kill conforced, and have console devices use CN_FORCED priority instead.Miod Vallat
This means we are no longer aborting the console scans even if the final console has been found, but on the other hand makes some logic simpler; plus it will be necessary for upcoming scode vs device loop order reversal. No user-visible change.
2005-12-30Stop TIOCCONS from silently doing nothing if the console device has CN_REMOTEMiod Vallat
priority; this might have been bright 12 years ago, but this is wrong (and does not rely upon any decent semantic). agreed krw@
2005-12-30Introduce another console device priority level, CN_FORCED, which wins overMiod Vallat
CN_REMOTE.
2005-12-30When a driver claims console, let it set conscode to itself, instead ofMiod Vallat
letting the bus walkers do this for it. This is necessary since apci does not use the bus walkers, now that we do not force console probes to stop when apci claims console.
2005-12-30Introduce symbolic constants for the magic conscode values.Miod Vallat
No functional change.
2005-12-30knfReyk Floeter
2005-12-30knf (replace lines of c++/c99 '//' comments with #if 0)Reyk Floeter
2005-12-30There is no attr_mp_nexthop() function, remove the prototype.Claudio Jeker
2005-12-30do not suggest that interactive authentication will workJason McIntyre
with the -b flag; based on a diff from john l. scarfone; ok djm
2005-12-30better wording, based on a diff from daniel matic;Jason McIntyre
2005-12-30- zap unused 'rf_ref' member of RCSFILE structure.Niall O'Higgins
spotted by joris@
2005-12-30do not use .Pp before displays;Jason McIntyre
2005-12-30- simplify an unecessary if/else construct in rcs_open()Niall O'Higgins
spotted by joris@
2005-12-30consistency tweak, from daniel matic;Jason McIntyre
2005-12-30more code cleanup, ok niallo@ and xsa@Joris Vink
2005-12-30- realloc() -> xrealloc(), was missed in the original sweep.Niall O'Higgins
2005-12-30minor style nits;Xavier Santolaria
2005-12-30Disable lint for libraries.Alexander Yurchenko
ok deraadt@ espie@
2005-12-30Remove unused attr_optlen()Claudio Jeker
2005-12-30Allow to disable lint by setting WANTLIB=noAlexander Yurchenko
ok deraadt@ espie@
2005-12-30add channel output filter interface.Reyk Floeter
ok djm@, suggested by markus@
2005-12-30Use sys/hash.h instead of own built functions that work similar.Claudio Jeker
While there reorder some structs to help with alignment.
2005-12-30Merge rde_attr_error() into rde_attr_parse() it is no longer necessary toClaudio Jeker
have a separate error function. It is no porblem to call rde_update_err() directly.
2005-12-30Initial W83791D support for lm(4).Mark Kettenis
ok krw@
2005-12-30make ACPI_DEBUG compileTed Unangst
2005-12-30adjust some thruth in a comment.Joris Vink
2005-12-30remove the tailq used to locate ehci's companion controllers. i haveDavid Gwynne
absolutely no idea how this compiled since the usb_cardbus struct (which is what the list was made of) was defined in usb_cardbus.h. usb_cardbus.h was removed from the tree over 8 months ago. gcc must be crap.
2005-12-30__aligned__ isn't really necessary on the struct, an aligned memberTed Unangst
will make the right thing happen. verified by kettenis and drahn