summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-01-01syncTheo de Raadt
2008-01-01provide a thing for use with %b to show which xa flags are set.David Gwynne
2008-01-01- make arc4random*() functions thread safe. Use a custom spinlock functionKurt Miller
instead of the generic pthread macros since free(3) uses __arc4_getbyte() when freeing small sized allocations and the generic pthread macros call malloc(3). - eliminate passing pointers to a static variable with global scope (rs) for additional code clarity and reduction. - shlib minor bumps for libc and libpthread due to new functions. From andreas@ with some bits from me. okay tedu@ marc@ w/some spot checking from millert@
2007-12-31fix nameTheo de Raadt
2007-12-31syncTheo de Raadt
2007-12-31new productTheo de Raadt
2007-12-31re-order product list slightlyTheo de Raadt
2007-12-31new umsm productTheo de Raadt
2007-12-31Xr liiTheo de Raadt
2007-12-31crank maxusers a little bitTheo de Raadt
2007-12-31enable upgt & lii. both have issues, and will need to be fixed inTheo de Raadt
time, but it is better to have people be FORCED to try to use them, and then more people can decide to get involved. if a driver is in-tree, but people don't even know it exists, how would they get involved? they just plain would not.
2007-12-31On some machines we get hotplug interrupts when they're resumed, so don'tMark Kettenis
rescan the pci bus if it already has devices attached to it. Make sure we clear the list of attached devices when we receive a surprise removal interrupt. Fixes kurt@'s T43. ok miod@, krw@
2007-12-31Reset partition size as well as partition offset before asking forKenneth R Westerback
another, valid, set while adding a partition. Lost in r1.119 when we switched to DL_SETP* defines.
2007-12-31we must reset the poll timeout to INFTIM when receiving the IMSG_SETTIMEHenning Brauer
because otherwise the poll timeout will stay at SETTIME_TIMEOUT (15s) forever unless we time out waiting for the first reply with -s spotted by Aaron Riekenberg <aaron.riekenberg@gmail.com>
2007-12-31Keep running the scancode translation state machine even when the keyboardMiod Vallat
is set to raw mode, but only feed decoded events to wscons if non-raw mode. Then, as an exception to this, pass the audio control keys events to wscons even if in raw mode, so that the in-kernel mixer control code can perform its work. The event is also seen by the raw event consumer (i.e. the X server). Requested and tested by many...
2007-12-31if our node doesn't have a lineno/fname, inherit from `used' node.Marc Espie
This lets suffix rules finally print out where they come from...
2007-12-31When in inetd mode, have sshd generate a Protocol 1 ephemeral serverDarren Tucker
key only for connections where the client chooses Protocol 1 as opposed to when it's enabled in the server's config. Speeds up Protocol 2 connections to inetd-mode servers that also allow Protocol 1. bz #440, based on a patch from bruno at wolff.to, ok markus@
2007-12-31use OpenBSD rcs id'sJasper Lievisse Adriaanse
2007-12-31a basic manpage for lii. im sure jmc will need to fix this, but its a startDavid Gwynne
2007-12-31use the same trick as for perl to make sure manpages get built laterMarc Espie
2007-12-31lii(4) is a driver for the atheros l2 ethernet chip as found on the asusDavid Gwynne
eeepc. unfortunately it doesnt work, but its going into the tree so it can be worked on. if anyone wants to have a go at it, please do. this driver was written by Quentin Garnier for NetBSD
2007-12-31Enable gbe(4) and mkbc(4) now that we have early console support.Joel Sing
ok miod@
2007-12-31Significantly improve the gbe(4) driver, including:Joel Sing
- Internal restructure to separate code paths. - Add support for early console. This allows for gbe(4) to takeover were the ARCBios leaves off (if we should do so). - Add support for 8bpp and 16bpp colour depths. As a result, we also have support for colourmaps. We now use 8bpp as the default. - Add mmap() support, enabling wsfb to operate correctly. - Correct initial origin problem that occurred occasionally. ok miod@. tested by jasper@.
2007-12-31Move wscons_machdep.c to it's rightful location. This brings OpenBSD/sgiJoel Sing
inline with all other architectures. ok miod@
2007-12-31Prevent strict-aliasing warnings on newer gcc versions. bz #1355, patchDarren Tucker
from Dmitry V. Levin, ok djm@
2007-12-31replace ctob/btoc by ptoa/atop as done for other architecturesMartin Reindl
2007-12-30Use get_size() in editor_change() instead of hand-rolling identicalKenneth R Westerback
code. Makes the size prompt/helpstring/looping the same for (a)dd/(m)odify/(c)hange.
2007-12-30Kill some now unneeded checks for 'c' partition manipulation. ChangeKenneth R Westerback
the variable 'c' to 'partno' in editor_delete() so all editor_* functions are even more consistant. No functional change.
2007-12-30A struct rt_addrinfo is needed for rt_missmsg() so we can use rtrequest1()Claudio Jeker
directly instead of takeing the detour via rtrequest(). OK henning@ markus@
2007-12-30new sentence, new line;Jason McIntyre
2007-12-30Only do pullups when necessary, m_pullup() always prepends an mbufClaudio Jeker
which is very bad if it is not necessary as it causes scrary mbuf fragmentation. tested and OK mglocker@
2007-12-30Simplify code by avoiding manual manipulations of the free spaceKenneth R Westerback
counter. Call edit_countfree() instead. Feedback from otto@. ok millert@ "Go for it" deraadt@
2007-12-30Since 'c' now always covers the entire disk and is always FS_UNUSED,Kenneth R Westerback
there is no point in allowing the edit mode commands (a)add/(n)ame/(m)odify/(d)elete/(c)hange to pretend to fiddle with it. Some already checked for and avoided 'c', but do it in a consistant manner in all cases. ok millert@ otto@ marco@
2007-12-30Correctly handle non-null state frames on 68020 and 68030 in fpfault.Miod Vallat
2007-12-30do not repeat "usage:" twiceIgor Sobrado
ok jmc@
2007-12-30each usage requires its own lineIgor Sobrado
written with improvements by jmc@ ok jmc@
2007-12-30usage messages should have the form "usage: command [arguments]"Igor Sobrado
ok jmc@
2007-12-30use the same argument name in synopsis and usage; lowercase "usage:"Igor Sobrado
ok jmc@
2007-12-30add missing space between argument names and ellipsisIgor Sobrado
ok jmc@
2007-12-30add missing arguments to synopsis; fix brackets; lowercase "usage:"Igor Sobrado
ok jmc@
2007-12-30lowercase "usage:"; align synopsesIgor Sobrado
ok jmc@
2007-12-30minor improvement on the diff to r1.106Igor Sobrado
ok jsing@
2007-12-30sort flags in both synopsis and usage, file not commited in last diffIgor Sobrado
ok jmc@
2007-12-30sort flags in both synopsis and usageIgor Sobrado
ok jmc@
2007-12-30dont freeze lock or set caching modes on ata devices that arent disks, itsDavid Gwynne
not a good idea. found by simon@ who plugged a sata dvd drive into ahci.
2007-12-30enforce install -S, avoids races with make -j:Marc Espie
libtool does relink some files during install, and it can happen that it relinks stuff at the exact same time that ld is being reinstalled. okay kettenis@
2007-12-30Remove unused variable consintr. ok mbalmerAlexander Bluhm
2007-12-30In pf_normalize_tcpopt() call pf_pull_hdr() address family safe.Marcus Glocker
OK dhartmei@
2007-12-30syncTheo de Raadt
2007-12-30regenBrad Smith