summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-05-27regenReyk Floeter
2006-05-27add Option UMTS 3G+Reyk Floeter
2006-05-27rcs_choosefile() no longer returns char *, it returns a fileRay Lai
descriptor; fix comment. Improve spacing. OK joris@
2006-05-27syncTheo de Raadt
2006-05-27Eradicate the type 'bus_dmasync_op_t'. Unused. SporadicallyKenneth R Westerback
implemented. Use int. ok mickey@ miod@
2006-05-26rename jumbo mtu to if_hardmtu; ok brad reykTheo de Raadt
2006-05-26<machine/rtc.h> is really only footbridge-specific, so, after pruning it fromMiod Vallat
dead meat, move the remainding definition to footbridge todclockvar where it belongs, and get rid of the installed header file. No change on Zaurus (besides the include removal), no functional change on cats.
2006-05-26Remove unused defines.Miod Vallat
2006-05-26Add RCS id.Miod Vallat
2006-05-26No md math.h in OpenBSDMiod Vallat
2006-05-26tidy up SYNOPSIS and EXAMPLES;Jason McIntyre
2006-05-26remove references to CRTs where they no longer make sense;Jason McIntyre
tweaked by mickey/krw ok deraadt
2006-05-26make pkg_add exit gracefully if it cannot read from a file handle, whichSteven Mestdagh
happens when the ssh connection could not be established. ok espie@
2006-05-26No need to have a struct uvm_object in each pmap when all you want is aMiod Vallat
lock and a reference count. No functional change.
2006-05-26Get rid of katelib.h, it was almost unused and is marked as deprecated anyway.Miod Vallat
2006-05-26Add dlg to copyright.Marco Peereboom
2006-05-26add paeMichael Shalayeff
2006-05-26ipsectl -> ipsecctlJason McIntyre
2006-05-26vpn.8 removal;Jason McIntyre
2006-05-26simplify synopsis; ok deraadtJason McIntyre
2006-05-26remove unneeded .Pp;Jason McIntyre
2006-05-26kill trailing line;Jason McIntyre
2006-05-26change keyword for route refresh request to just refresh, discussed withHenning Brauer
claudio
2006-05-26better words; mrd@alkemio.orgTheo de Raadt
2006-05-26syncTheo de Raadt
2006-05-26syncTheo de Raadt
2006-05-26let us not talk about ipsecadm and vpn anymore; ok reykTheo de Raadt
2006-05-26prettier printingTheo de Raadt
2006-05-26\<char> is <char> except for \<newline> -- no exceptions. much like howTheo de Raadt
other things work. ok henning
2006-05-26Add blinking for disks.Marco Peereboom
2006-05-26Assign locator.target to blink structure.Marco Peereboom
2006-05-26add support for timedelta sensors, which pretty much means udcf(4) rightHenning Brauer
now. untested due to lack of hardware, and it wouldn't have worked in the plane anyways. work in progress, currently picks up and uses all sensors it finds, config file bits to be added soon. theo fine with this going in
2006-05-26knfTheo de Raadt
2006-05-26simplify interface (not binary compatible); ok marcoTheo de Raadt
2006-05-25Enable optional specific handling of the u-area in pmap via PMAP_UAREA ifMiod Vallat
defined; from NetBSD. Currently only used on xscale arm to use the mini data cache for u area mappings instead of the main data cache.
2006-05-25Remove unused struct cfdriver field from genericconf struct, as on cats.Miod Vallat
2006-05-25handle Online/Scrub SD state for marcoTheo de Raadt
2006-05-25make an Online/Scrub SD state for marcoTheo de Raadt
2006-05-25Move a int i; to top of function so that it compiles on non c99 compilers.Marco Peereboom
Pointed out by miod@ The enclosure id modifier didn't reflect reality so move it back to whatever the raid card uses.
2006-05-25When looping over va ranges, do not compute the same sdt pointer more thanMiod Vallat
once.
2006-05-25more bits from transatlanic flight:Henning Brauer
make priv_adjtime() deal with offsets, not peers.
2006-05-25figure out the refid to send to NTP v3 clients early and store itHenning Brauer
first bits from a way to long flight
2006-05-25formattingBrad Smith
2006-05-25tidy up EXAMPLES;Jason McIntyre
2006-05-25formatting; ok bradJason Wright
2006-05-25automatic rate control (AMRR) + cosmetic and small fixesDamien Bergamini
2006-05-25- split tip.1 into tip.1 and cu.1Jason McIntyre
- big tidy up whilst here ok mk fkr
2006-05-25more room for seconds stringTheo de Raadt
2006-05-25And add time and percentage to builds and check consistencies.Marco Peereboom
2006-05-25No matter how big the buffer size is, always limit to INT_MAX forRay Lai
SSL connections, due to SSL_read()'s prototype. This allows us to change ftp_read to return size_t and have it return (0) on error, just like fread(). OK otto@, beck@