Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-04-16 | Use ntohs() to swap the raw i2c data to native format; tested by sthen | Theo de Raadt | |
2008-04-16 | permit _ in the middle of a DNS name component | Theo de Raadt | |
2008-04-16 | mkfifo makes fifos, not directories; from Ben Calvert | Jason McIntyre | |
while here, make the description of -m more consistent for mkdir, mkfifo, and mknod. add a touch of .Ex for mkdir too. | |||
2008-04-16 | Tune isoc maximal transfer size to a better value. Makes all available | Marcus Glocker | |
resolutions on my cam work. | |||
2008-04-16 | more efficient use of mbufs in nfsm_uiotombuf(). | Damien Bergamini | |
allocate a mbuf cluster only if length is greater than MLEN instead of MINCLSIZE. ok blambert@, thib@ | |||
2008-04-16 | - wpa-psk is section 8, not 1 | Jason McIntyre | |
- one more passphrase tweak | |||
2008-04-16 | Support the pcf8584 variant found on the u25/45. | Mark Kettenis | |
2008-04-16 | Turns out getpropstring() returns an empty string if a property is missing | Mark Kettenis | |
instead of NULL. Makes rtc(4) really work on the u25. tested by mikeb@ | |||
2008-04-16 | Kernel implementation of the 4-way handshake and group-key | Damien Bergamini | |
handshake protocols (both supplicant and authenticator state machines) as defined in the IEEE 802.11i standard. Software implementation of the TKIP (Temporal Key Integrity Protocol) and CCMP (CTR with CBC-MAC Protocol) protocols. This diff doesn't implement any of the 802.1X authentication protocols and thus only PSK authentication (using pre-shared keys) is currently supported. In concrete terms, this adds support for WPA-PSK and WPA2-PSK protocols, both in station and hostap modes. The following drivers are marked as WPA-capable and should work: bwi(4), malo(4), ral(4), iwn(4), wpi(4), ural(4), rum(4), upgt(4), and zyd(4) The following options have been added to ifconfig(8): wpa, wpapsk, wpaprotos, wpaakms, wpaciphers, wpagroupcipher wpa-psk(8) can be used to generate keys from passphrases. tested by many@ ok deraadt@ | |||
2008-04-16 | pass-phrase -> passphrase, in keeping with the rest of the docs; | Jason McIntyre | |
2008-04-16 | Oops, decrease debug log level back to 1. | Marcus Glocker | |
2008-04-16 | Some formatting nits. No functional change. | Owain Ainsworth | |
2008-04-16 | Use the timeout(9) API the right way: Don't initialize the timeout | Michael Knudsen | |
cookie all the time, and only call timeout_del if we're not going to timeout_add right away. Testing by johan@, oga@, sthen@, and possibly some more people (thanks). Ok krw@, oga@, sthen@. | |||
2008-04-16 | Replace handrolled hashes with a splay tree, while there plug a memleak | Pierre-Yves Ritschard | |
inherited from the original drm driver. input and ok oga@. | |||
2008-04-16 | Make sure tickcmpr_set() always writes a time in the future. | Mark Kettenis | |
2008-04-16 | Start to make device initialization automatic instead all the static | Marcus Glocker | |
games. Tested by robert@ and myself | |||
2008-04-16 | Mention m5819, m5823 and bq4802. | Mark Kettenis | |
2008-04-16 | Redo/clarify the logic for storing options in the various buffers. | Kenneth R Westerback | |
While there, bail out quickly if no options can be stored, and avoid overflow buffers if building a bootp reply. Henning looked and didn't get upset. millert@ tested it for a few days and liked the look of it. canacar@ glanced at it. | |||
2008-04-15 | Add workaround for UltraSPARC-II errata, where writes to %tick_cmpr would | Mark Kettenis | |
sometimes fail, which would result in the periodic clock interrupts on a CPU stop. Spotted in a NetBSD commit message, loosely based on code in OpenSolaris. | |||
2008-04-15 | Add support for the Texas Instruments bq4802 real-time clock found on the | Mark Kettenis | |
Ultra 25 and Ultra 45. | |||
2008-04-15 | fix Xr | Theo de Raadt | |
2008-04-15 | mention LM76; stop being exact about increments | Theo de Raadt | |
2008-04-15 | Take a shot at LM76 support (13 bit temperature, 0.065 degC per LSB) for | Theo de Raadt | |
when we finally find one of these devices. looked at by kettenis.. | |||
2008-04-15 | It turns out the mysterious chip with the heatsink glued on, found on mgx | Miod Vallat | |
video boards, is a known entity, so add support for 2d acceleration with the help of the X code (which makes baby Jesus cry). The blitter is fast enough to make a cgsix feel as slow as a cgthree in comparison. | |||
2008-04-15 | describe why fd passing is now so fucked up, and who's fault it is | Theo de Raadt | |
2008-04-15 | sync | Theo de Raadt | |
2008-04-15 | fix a comment. no binary change. | Damien Bergamini | |
2008-04-15 | link wpa-psk(8) to the build | Damien Bergamini | |
2008-04-15 | welcome wpa-psk(8). | Damien Bergamini | |
ok deraadt@ | |||
2008-04-15 | Fix braino in mgx_loadcmap() invocation. | Miod Vallat | |
2008-04-15 | Oops, it's a bit too early for -Wvariable-decl on sparc. | Miod Vallat | |
2008-04-15 | - make it clear that hosts.lpd follows the same syntax that hosts.equiv(5) | Antoine Jacoutot | |
inputs from jmc@ "looks ok" beck@ (similar older diff), "fine by me" jmc@ | |||
2008-04-14 | Introduce macros to switch to normal and alternate globals and switch to | Mark Kettenis | |
use the .section based mechanism to patch them up for sun4v. | |||
2008-04-14 | Rework NFS mbuf write routines: | Bret Lambert | |
nfsm_uiotombuf(): - no meaningful return, function becomes void - replace frankensteined uiomove/MGET with actual call to uiomove nfsm_strtmbuf(): - no meaningful return, becomes void - rename and reorder parameters to be consistent with other functions - becomes wrapper to nfsm_uiotombuf nfsm_buftombuf(): - new function; unused but slated for future use - wrapper to nfsm_uiotombuf As a bonus, making these functions void removes much unneeded code and garbage collects `magic' variable t2 which was only used (invisibly) by the macros from nfsm_subs.h Preps the way for removing much more NFS goo... testing by myself, thib@ and merdely@ ok thib@ | |||
2008-04-14 | move the cache lookup code into a function, instead repeating | Thordur I. Bjornsson | |
it twice, makes this nicer as a bonus; From NetBSD. tested by johan@, ok blambert@. | |||
2008-04-14 | garbage collect the now unused spec_ebadf(); | Thordur I. Bjornsson | |
ok dlg@ | |||
2008-04-14 | typo in attachment | Theo de Raadt | |
2008-04-13 | - remove code that was rendered pointless by the last commit | Jacob Meuser | |
- minor knf from Pierre Riteau | |||
2008-04-13 | sync | Chris Kuethe | |
2008-04-13 | add my logitech camera | Chris Kuethe | |
"add the product id to usbdevs" robert@ | |||
2008-04-13 | Use %g7 to store a pointer `struct cpu_info', and use it whereever possible. | Mark Kettenis | |
2008-04-13 | lear CPUF_RUNNING when halting a CPU. Fixes problems with powering dowm | Mark Kettenis | |
MP amd64 systems for quite a few people. ok deraadt@, krw@ | |||
2008-04-13 | Redo the '?' output in (E)ditor mode so it uses two columns and once | Kenneth R Westerback | |
again fits on one page. Suggested by, tweaked and ok deraadt@. | |||
2008-04-13 | Disable ISP10160 and ISP12160. They don't quite work yet, and people with | Mark Kettenis | |
another (working) isp(4) get hurt by this. ok krw@, deraadt@ | |||
2008-04-13 | MSIZE is defined in sys/param.h, not machine/param.h; | Jason McIntyre | |
from Jonathan Thornburg, documentation/5792 | |||
2008-04-13 | some small fixes; | Jason McIntyre | |
2008-04-13 | garbage collect the cpus_running global variable; | Thordur I. Bjornsson | |
pointed out by and ok drahn@, toby@; | |||
2008-04-13 | bring back a free call which was left out when moving from handrolled lists | Pierre-Yves Ritschard | |
to tailqs. this plugs a tiny memleak. ``nice catch'' and ok oga@ | |||
2008-04-13 | Improve the libc DNS resolver ID generation algorithm to be more | Damien Miller | |
resistant to prediction atacks by wrapping the existing LCG in a random permutation generator based on a Luby-Rackoff block cipher. lots of discussion and final ok deraadt@ | |||
2008-04-13 | Use arc4random_buf() when requesting more than a single word of output | Damien Miller | |
Use arc4random_uniform() when the desired random number upper bound is not a power of two ok deraadt@ millert@ |