summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-01-09be more careful with nanotime() calls in early entropy storage, sinceTheo de Raadt
at least sparc may not have the clock mapped (found by miod). while here, protect some more timeout_*() calls with timeout_initialized()
2011-01-09Continue loading acpiec even if _REG fails.. allows HP G62 to work properlyJordan Hargrave
Linux does the same with error message. _REG only notifies AML that acpiec config space is available. ok marco
2011-01-09Minor tweaks to nc(1) man page and usage.Jeremy Evans
OK jmc@, nicm@, tedu@
2011-01-09In ip6_forward() only one call to icmp6_error() was not protectedAlexander Bluhm
by an if (mcopy). The variable mcopy comes from m_copy() and could be NULL. Bring this call in line with all the other icmp6_error() calls. ok henning@, claudio@, markus@, mpf@
2011-01-09syncTheo de Raadt
2011-01-09Check in resettodr() if inittodr() has been called, otherwise we end upJasper Lievisse Adriaanse
resetting the clock when we don't need to. Found out with booting hppa64 kernels, and the problem also exists on hppa when booting with '-a' and hitting 'exit' when asked for the root filesystem. help & ok jsing@ also ok kettenis@ (who suggested naming the variable like amd64/i386 to prevent creating yet another variant of this code)
2011-01-09have netstat -w default to the first egress interface, which is usually moreTed Unangst
interesting than whatever happens to be the last interface. ok deraadt nicm
2011-01-09Remove a bit of text that makes exit-unattached description unclear.Nicholas Marriott
2011-01-09Add missing arguments to some options.Nicholas Marriott
2011-01-09check that lists lacking their end macro do not crash;Ingo Schwarze
related to mdoc_macro.c rev. 1.59
2011-01-09test font-alternating blocks in literal context;Ingo Schwarze
related to usr.bin/mandoc/man_term.c rev. 1.51
2011-01-09Remove an unused variable, and use int for array indices (not size_t);Ingo Schwarze
found by lint(1), fixed by kristaps@, no functional change.
2011-01-09Only .Bd -literal has 8-character tabs,Ingo Schwarze
while .Bd -unfilled has 5-character tabs just like normal text; from kristaps@.
2011-01-09radio temperature sensor is gone.Damien Bergamini
2011-01-09trust the Tx/Rx chains masks in ROM except for the 4965 and 5100Damien Bergamini
which are known to have broken ROMs.
2011-01-09cleanup; change the way opns are attached.Damien Bergamini
include a fix for Intel Centrino Advanced-N 6250 devices by Antonio R Nicolosi.
2011-01-09Add and install tbl(7);Ingo Schwarze
written by kristaps@, looked over by jmc@.
2011-01-09Sync tbl handling to bsd.lv release 1.10.9:Ingo Schwarze
* .T} can be followed by a delimiter, then more data. * Do not limit table column widths (improves terminfo(5)). * Let numerical cells respect explicitly specified minimum cell widths. * Let terminal output survive missing data cells. * Parse and ignore arguments in parentheses on layout cell specifications. * Move tbl_calc() into out.c such that it can be used by all frontends. * Give tables an HTML class. * Some cleanup in tbl -Thtml code. All code by kristaps@.
2011-01-09NYTProf now warns against $& in regexps, remove that one which doesn'tMarc Espie
serve any purpose...
2011-01-09Make sure coding errors cannot make us miss fatal parsing errorsIngo Schwarze
by assert(3)ing valid parser state in the main parsing functions; from kristaps@.
2011-01-09add yet another check: obviously in a @depend line, if the def part doesn'tMarc Espie
match the pattern, the package has something wrong. prevents some bogus tk LIB_DEPENDS from even packaging.
2011-01-09Sync to bsd.lv:Ingo Schwarze
* one additional pair of .Sx cross references * prefer .Dl over .D1 for code examples
2011-01-09Only use memory mapped extended PCIe config space access for the bussesMark Kettenis
advertised in the MCFG table, and fall back on the traditional method for other busses. Fixes issue reported by henning@.
2011-01-09syncTheo de Raadt
2011-01-09Upon consideration, random(9) should definately not be documented. ItTheo de Raadt
is not for use by other things (and is not used that way, typically very MD). Perhaps we should rename it to something else...
2011-01-09kern(9) documents the kernel API srandom/random, which should onlyTheo de Raadt
be used by the scheduler. we should rethink this; perhaps delete them.
2011-01-09tweak previous;Jason McIntyre
2011-01-09update random(4) and arc4random(9) manual pagesTheo de Raadt
2011-01-08forward decl struct procTheo de Raadt
2011-01-08split randomattach into random_init() and random_start(), so that weTheo de Raadt
can make attempts to load 'entropy' into the RC4. ok miod ariane
2011-01-08Change detection of indefinite BER lenghts (which is not allowed). Only aMartin Hedenfal
length byte of 0x80 is now treated as meaning indefinite. This fixes empty sets sent by the winldap api. Makes authentication through pGina work. with william@
2011-01-08syncTheo de Raadt
2011-01-08new radeon; Claus AssmannTheo de Raadt
2011-01-08rename imask[] to cpu_imask[] to because imask is too loud as far asTheo de Raadt
kernel namespace ok miod
2011-01-08reserve one xfer for beacons during init.Damien Bergamini
2011-01-08fix LEDs handling.Damien Bergamini
do not read back the LED GPIO pin since it is configured in output only mode. makes the link LED blink on the WiFiStation EXT when scanning (the LEDs indicating the signal strength are not working yet).
2011-01-08Count the right values for the consumed counter.Claudio Jeker
Problem found and fix provided by Marcel Wiget <mwiget () gmail ! com>
2011-01-08The Ubiquiti WiFiStation EXT works on the Sun Blade 1500.Damien Bergamini
Enable athn at uhub on all USB 2.0 capable arches.
2011-01-08use host and not options.hostname, as the latter may have unescapedDamien Miller
substitution characters
2011-01-08the USB frontend has its own switch_chan() function, so no need toDamien Bergamini
do AR9271-specific stuff here.
2011-01-08s/;/:/Damien Bergamini
2011-01-08clear pci configuration register 0x41 on resume, like during attach.Damien Bergamini
only clear it if it is != 0 while i'm at it.
2011-01-08Removed unused structure memberJordan Hargrave
2011-01-08spacesTheo de Raadt
2011-01-08switch back from PAGE_SIZE for the sake of sparcTheo de Raadt
2011-01-08Move all calls to fcntl(...O_NONBLOCK) into a function and clear theNicholas Marriott
flag on the stdio file descriptors before closing them (fixes things like "tmux ls && cat").
2011-01-08destatic. ok deraadtTed Unangst
2011-01-08Accept colours of the hex form #ffffff and translate to the nearest fromNicholas Marriott
the xterm(1) 256-colour set.
2011-01-08Enable unix datagram support by treating ENOBUFS like EAGAIN.Jeremy Evans
Separate commit requested by deraadt@. OK nicm@
2011-01-08Support unix domain sockets in nc(1) with -Uu.Jeremy Evans
Previously, using -U with -u was an error that was not documented in the man page. Now it will use a unix socket in datagram mode. Bidirectional unix datagram communication requires a socket at both ends, so in client mode (without -l), a temporary socket is created so that responses from the server can be received. If -s is specified with -U and -u, it specifies the location of the temporary socket to create. This was mostly written way back in 2007. Since then, various improvements implemented based on suggestions from guenther@, tedu@, and nicm@. Man page help from nicm@ and jmc@. Unix datagram support requires a small change to atomicio.c in order to function correctly, this will be committed separately shortly. OK nicm@