summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-10-20fix a long-standing bug in "preserving" bios mapped irqs.Michael Shalayeff
in case bios did not provide routing info for those they would be falsely routed often to wrong pins. also testing by henning@
2005-10-20add 8237 support and repair 8231 that was confused very bad; lots of testing ↵Michael Shalayeff
help by henning@
2005-10-20fix up the licey entry; from form@Michael Shalayeff
2005-10-20s/mtrspr/mtsprg in ddblowMark Kettenis
ok drahn@
2005-10-20Don't try to match VIA ide chips as ISA bridges.Alexander Yurchenko
2005-10-20put HISTORY in the right order;Jason McIntyre
2005-10-20A library should not return EFAULT. Just segfault if a bogus orOtto Moerbeek
NULL pointer is passed in. ok espie@
2005-10-20talk about choices when describing -y; from chris.kuethe@gmail.com ok fgschTheo de Raadt
2005-10-20add arrays of initial rf register values.Reyk Floeter
ok jsg@ btw., life would be much easier if chipset vendors would implement a digital rf interface instead of this analog voodoo all the time.
2005-10-20Always give user a chance to confirm/modify TERM and keymap whenKenneth R Westerback
running install or upgrade. ok deraadt@
2005-10-20KNF; marco okTheo de Raadt
2005-10-19Fixup case statements to use #define'sJordan Hargrave
suggested by deraadt ok marco@
2005-10-19KNF fixesJordan Hargrave
ok marco@
2005-10-19Oops.. part of ipmi_thread fixesJordan Hargrave
ok marco@
2005-10-19Added readable case names for ipmi device typesJordan Hargrave
ok marco@
2005-10-19Added length test for ipmi_sensor_name stringJordan Hargrave
ok marco@
2005-10-19make this compile with AUDIO_DEBUG; reported in tech@ byFederico G. Schwindt
Gordon Willem Klok (gklok at cogeco dot ca).
2005-10-19Changed poll to use kernel threads instead of in timer contextJordan Hargrave
ok marco@
2005-10-19Added status for chassis intrusion (critical if open)Jordan Hargrave
ok marco@
2005-10-19Changed order of reading sensor vs sensor status, failed sensors had invalidJordan Hargrave
reading ok marco@
2005-10-19small cleanups while reading; ok claudio@Kevin Steves
2005-10-19Added code to properly read power supply installed/power stateJordan Hargrave
ok marco@
2005-10-19Add -h option to display human-readable numbers.Marc Espie
okay otto@, deraadt@, jmc@. (note that is mostly useless from scripts, hence okay as a non-standard option).
2005-10-19Add neighbor ID in warning and use correct function names.Claudio Jeker
2005-10-19fix some spellings in comments.Claudio Jeker
2005-10-19Added SMIC interface codeJordan Hargrave
ok marco@
2005-10-19kill trailing space;Jason McIntyre
2005-10-19syncTheo de Raadt
2005-10-19add support to change the channel from ifconfig; tested by some,Federico G. Schwindt
deraadt@ ok.
2005-10-19Teach unwinder about StackGhost.Mark Kettenis
ok deraadt@
2005-10-19once again: library routines should not check pointers and what errnoTheo de Raadt
with EFAULT. programmers ignore the error returns. please, please, please -- we want to crash so that the programmer will become aware of the bug and fix it instead. ok otto
2005-10-19library routines should not be checking for NULL pointers passed in,Theo de Raadt
and then setting errno to EFAULT. that is balony programming! they should keep stumbling along to purposely create a crash, so that the programmer stops doing that kind of stupid crap. ok otto
2005-10-19add missing header for HISTORY section; ok jmc awhile agoJared Yanovich
2005-10-19sync usage();Xavier Santolaria
2005-10-19EFAULT corrections; ok millert and ottoJared Yanovich
2005-10-19regenBrad Smith
2005-10-19Add the DeLorme Earthmate GPS.Brad Smith
From NetBSD
2005-10-19v_lock is also gone, noted by tedu@Pedro Martelletto
2005-10-19Remove v_vnlock from struct vnode, okay krw@ tedu@Pedro Martelletto
2005-10-19.Xr rcsmerge(1) + one style nitpick;Xavier Santolaria
2005-10-19header cleaning; ok claudio@Kevin Steves
2005-10-19Add smu(4) man page.Mark Kettenis
2005-10-19Add smu(4).Mark Kettenis
ok drahn@
2005-10-19use string.h; ok claudio@Kevin Steves
2005-10-19for "bgpctl neighbor foo up/down/clear", make bgpctl not exit after sendingHenning Brauer
the request, but wait for the new IMSG_CTL_RESULT message, which contains a status code to indicate wether the request was processed successfully or wether an error occured and if so what kind of error. no more "IMSG_CTL_NEIGHBOR_ with unknown neighbor foobaz" in the log when you mistyped foobar - no bgpctl itself complains claudio ok
2005-10-19- make a bunch of changes to how we handle verbose output. this brings usNiall O'Higgins
much closer in line with GNU RCS and cleans things up in general. ok joris@, "looks fine to me" xsa@
2005-10-19tsc tsc tsc, tabs are not always holyHenning Brauer
2005-10-19new keyword "down" in neighbor spec, when givenm, the session is notHenning Brauer
started on bgpd startup but stays in IDLE. requested by claudio
2005-10-19mark links being extracted with `zap', so that they do not get recordedMarc Espie
into partial plists until they've gone through an actual install. Prevents partial replacements from destroying genuine links in packages when they get uninstalled.
2005-10-19on "bgpctl neighbor foo clear", we used to send a STOP event immediatelyHenning Brauer
followed by a START event. Instead of sending START immediately, start the IdleHoldTimer with a very low value (5 seconds) so that we restart the session these seconds later. some other implementations deal poorly with our previously superfast reconnects, namely, that commercial one from san jose, claudio ok