summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-10-18syncTheo de Raadt
2007-10-18ignore fans with >= 0x0fff readings. According to the iic_dump(), it appearsConstantine A. Murenin
as if all the invalid fans have either 0x0f00 or 0x0000 readings, but with the in-the-field driver 0x0f00 appears as 0x0fff. At any rate, no real fans would have sensors detecting 0x0f00 (351 RPM), so no harm continuing to ignore it, t. tested by jon.steel@esentire.com discussed with kettenis@ deraadt@
2007-10-18synch expat major number with xenocara, and then some.Marc Espie
activate it in the build.
2007-10-18syncTheo de Raadt
2007-10-18Add support for the Moosehead PS/2 controller as found on SGI O2 workstations.Joel Sing
ok miod@ deraadt@
2007-10-18add to CLEANFILES, to kill dribblesTheo de Raadt
2007-10-18enter iso dir for clean/cleandir, too, to delete dribblesTheo de Raadt
2007-10-18Make sure interrupts are really enabled at the beginning of proc_trampoline,Miod Vallat
tested by deraadt@ jsing@
2007-10-18enter for obj@ building, otherwise dribbles happenTheo de Raadt
2007-10-18Pull from master repo:Stefan Kempf
Replace errorx() with error(); exit() in the child process in callsys(). errorx deletes the temp. files which we don't want to happen in the child. ok otto@, ragge@
2007-10-18Define a new attribute, pckbcslot, which pckbc and gsckbc provide, and toMiod Vallat
which pckbd and pms attach. This makes it simpler to add new controllers pckbd/pms can attach to.
2007-10-18Kill spurious warnings when arg is a function pointer. ShouldOtto Moerbeek
actually check the return type and arg list of the function pointer arg. ok ragge@
2007-10-18spacingTheo de Raadt
2007-10-18Avoid memory leak if tag is defined multiple times in CVSROOT/config.Tobias Stoeckmann
OK ray@, xsa@
2007-10-18Check to see if the SPD EEPROM size looks sane (ie < 32K)Jonathan Gray
when trying to decide if we have found an SPD EEPROM. ok deraadt@
2007-10-18Massive cleanup in the authentication code. the simple auth_key and the cryptClaudio Jeker
keys are not strings so a) use u_int8_t instead of char and b) uses memcpy to copy the full MAX_SIMPLE_AUTH_LEN resp. MD5_DIGEST_LENGTH bytes around. The parser needs some special code to ensure that the string is not to long and if it is shorter then the buffer the rest needs to be zero padded. Avoid to use strncpy() instead use a bzero(); memcpy() combo. with and OK deraadt@
2007-10-18Add missing bits for auth crypt and cleanup a bit. OK deraadt@Claudio Jeker
2007-10-18avoid some ugly line split;Jason McIntyre
2007-10-18Add some first LEDs support. Tested on my cardbus Linksys WPC54G Ver 3.Marcus Glocker
Diff ported from DragonFlyBSD
2007-10-18scsi_done() must be splbio() protected... who did this work for??; ok dlgTheo de Raadt
2007-10-18Eliminate unnecessary resets when calling the SIOCSIFADDR ioctl.Brad Smith
Tested by todd@ ok dlg@
2007-10-18No need to include <machine/pte.h> here.Miod Vallat
2007-10-18Get rid of the silly union for mips pte. No functional change exceptMiod Vallat
pmap.h now includes pte.h.
2007-10-18add missing $OpenBSD$; "of course" deraadtConstantine A. Murenin
2007-10-18mention the Intel ICH9 chipset.Brad Smith
ok dlg@
2007-10-18SIGCHLD is not an errno value.Ray Lai
Spotted by deraadt.
2007-10-17Add the Intel ICH9 chipset.Brad Smith
Tested by damien@ ok dlg@
2007-10-17Add the Intel ICH9 chipset.Brad Smith
Tested by damien@ ok dlg@
2007-10-17Add the Intel ICH9 chipset.Brad Smith
Tested by damien@ ok dlg@
2007-10-17miod says noone needs isa/isavar.h anymore, and i believe himTheo de Raadt
2007-10-17Use ldx (instead of ld) to load a pointer.Mark Kettenis
ok deraadt@
2007-10-17put bsd.rd onto install##.isoTheo de Raadt
2007-10-17sparc64 has a bsd.mp too (though it is early work..)Theo de Raadt
2007-10-17build sparc64 bsd.mp tooTheo de Raadt
2007-10-17Let other people build sparc64 bsd.mp too.Mark Kettenis
2007-10-17MULTIPROCESSOR kernels need clock interrupts on secondary CPUs too, so don'tMark Kettenis
mark interrupts as busy.
2007-10-17Spin up secondary CPUs on MULTIPROCESSOR kernels. Works on UltraSPARC-IIIMark Kettenis
CPUs.
2007-10-17From ripd: Add missing RTM_VERSION checks.Claudio Jeker
2007-10-17From ripd: Add missing RTM_VERSION checksClaudio Jeker
2007-10-17Do not clean up vers.c as it is not autogenerated anymore.Hans-Joerg Hoexer
ok deraadt.
2007-10-17wrong type for digest; ok claudioTheo de Raadt
2007-10-17Add missing RTM_VERSION checks.Claudio Jeker
2007-10-17Get proc_trampoline() ready for MULTIPROCESSOR.Mark Kettenis
2007-10-17remove "unused variable" warningsCharles Longeau
tested by deraadt@ on a gcc2 arch looks ok ray@ ok deraadt@
2007-10-17- Be more careful about pre-existing SIGCHLD handlers (or SIG_IGN) byTheo de Raadt
temporarily restoring default behaviour. This is not 100% ideal. But this fixes editor handling in mail... bah, it is really unfortunate that got broken - refactor the restoration code as well, to make it simpler ok ray
2007-10-17Convert MALLOC/FREE to malloc/free.Hans-Joerg Hoexer
ok gilles@
2007-10-17Remove redundant code.Claudio Jeker
2007-10-17Sanitize debug printf.Mark Kettenis
2007-10-17Proper TLB flushing for MULTIPROCESSOR kernels.Mark Kettenis
2007-10-17fix getopt handling; ok marcoTheo de Raadt