summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-02-08Add quite a few more rum(4) devices.Jonathan Gray
Two from Yojiro UO in NetBSD PR 35552
2007-02-08Do all allocation and deallocation of shstr in elf_symload() toRay Lai
prevent double-freeing shstr. Also don't free known NULL values (*pnames and *psnames). Initially inspired by Charles Longeau's first diff to tech@; he later sent a second diff to tech@ nearly identical to this commit. Freaky. OK mickey@.
2007-02-08When getc() returns EOF, either feof() or ferror() will return true,Ray Lai
so no need to check them. Removes a bitwise OR that should have been a logical OR as well. From Pierre Riteau <pierre dot riteau at free dot fr>. OK joris@.
2007-02-08Remove double semicolons.Ray Lai
From Pierre Riteau <pierre dot riteau at free dot fr>. OK marco@.
2007-02-08Remove double semicolons.Ray Lai
From Pierre Riteau <pierre dot riteau at free dot fr>. OK jaredy@ and moritz@.
2007-02-07Add support for MaxStream XBee ZigBee Development Kit USB interface.Jonathan Gray
From Darrin Chandler
2007-02-07regenJonathan Gray
2007-02-07MaxStream XBee ZigBee development kit.Jonathan Gray
From Darrin Chandler.
2007-02-07fstat() -> lstat() in a few select cases,Todd T. Fries
this fixes a bug where opencvs update would abort if a link existed that pointed to a non-existent file/dir ok joris@
2007-02-07consistency tweak;Jason McIntyre
2007-02-07strl* overload; use xsnprintf(); OK ray@.Xavier Santolaria
2007-02-07Several improvements to the usb client code. Still not working.Dale Rahn
2007-02-07tweaks; ok millertJason McIntyre
2007-02-07sys/swap.h needs sys/param.h and sort while hereNikolay Sturm
feedback and ok pedro
2007-02-07grammar fix; from bret lambertJason McIntyre
2007-02-07add new "log (updates|all)" configuration option to log stateReyk Floeter
notifications after completed host checks. either only log the "updates" to new states or log "all" state notifications, even if the state didn't change. the log messages will be reported to syslog or to stderr if the daemon is running in foreground mode. ok claudio@ pyr@
2007-02-07include the host name in log_debug() messages used by check_tcp readReyk Floeter
callbacks.
2007-02-07another log_debug() removal ("nothing to write")Reyk Floeter
2007-02-07more log_debug() cleanupReyk Floeter
2007-02-07remove superfluos log_debug() messagesReyk Floeter
ok pyr@
2007-02-07remove unused functions and variables which have been copied fromReyk Floeter
ospfd(8) (can be re-imported later if required).
2007-02-07add the -D option to define macros on the command line (as found inReyk Floeter
bgpd(8), hostapd(8), ipsecctl(8), pfctl(8), ...).
2007-02-07remove a log_debug() that is no longer needed.Claudio Jeker
2007-02-07its four-byte, not four byte; ok jmc@Otto Moerbeek
2007-02-07check st_name validity also check for overflow and not only for zero; found ↵Michael Shalayeff
by Charles Longeau <chl@tuxfamily.org>
2007-02-07space before punctuation;Jason McIntyre
2007-02-07enable arc(4) for Areca RAID Controllers. they work great.David Gwynne
ok drahn@
2007-02-07enable bio(4)David Gwynne
ok drahn@
2007-02-07bus_space_{read,write}_raw_region_[24] take the length of the buffer theyreDavid Gwynne
operating on as bytes, not as the number of words or dwords. ok drahn@ kettenis@
2007-02-07sync dhcp.h to krw's correction to not count 14 bytes of ethernetKevin Steves
overhead. ok krw@
2007-02-07syncTodd T. Fries
2007-02-07add bio(4), ok dlg@Todd T. Fries
2007-02-06Define trap #0x81 for cache range flush, will be necessary soon for gccMiod Vallat
trampoline code and ld.so.
2007-02-06Get memory size from SH-IPL+g whenever possible, before relying upon theMiod Vallat
hardcoded 64MB. No functional change since we have not encountered non-64MB systems yet.
2007-02-06Use uvm_grow() instead of rolling our own inline version.Miod Vallat
2007-02-06define the bio(4) cdev stuff in conf.h, rather than having a per machineDavid Gwynne
definition. switch amd64 and i386 to the conf.h version, and add it to macppc. original diff ok gwk@ tweaks and ok miod@
2007-02-06Evil typo; spotted by Thorsten GlaserMiod Vallat
2007-02-06document -D; ok jmc@Otto Moerbeek
2007-02-06spacesKevin Steves
2007-02-06remove a comment which is no longer true; ok ottoJason McIntyre
2007-02-06various cleanup:Jason McIntyre
- escapes for < and > - fix some dodgy .Bd - add a little vertical space
2007-02-06sync synopsis and usage();Jason McIntyre
2007-02-06+.Ex -std odJason McIntyre
2007-02-06sort options and sync usage();Jason McIntyre
2007-02-06switch to .Ex and remove some unnecessary brackets;Jason McIntyre
2007-02-06fix some dodgy displays;Jason McIntyre
2007-02-06Update to tzcode2007a. This adds support for 64bit time_t in caseTodd C. Miller
we need it in the future. All of our platforms currently have 32bit time_t types. This also extends the timezone data file format to support both 32bit and 64bit data. The 64bit data is located after the 32bit data so binaries linked with the older tzcode simply won't look at it. A version field in the file header is used to determine whether the data file is the old or extended format. OK miod@
2007-02-06typoMarc Espie
2007-02-06Added support for calling _OSI methodJordan Hargrave
Display byte/word/string/nameref for aml_mnem function ok marco@
2007-02-06Use atomic.h operation for manipulating p_siglist in struct proc. SolvesArtur Grabowski
the problem with lost signals in MP kernels. miod@, kettenis@ ok