summaryrefslogtreecommitdiffstats
path: root/usr.sbin/installboot/bootstrap.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-11-24syncderaadt1-0/+9
2016-11-24Update to tzdata2016j from ftp.iana.orgmillert8-136/+218
2016-11-24Add Copyright and license.schwarze1-3/+59
Pull in some more information about RETURN VALUES from OpenSSL.
2016-11-23allow ClientAlive{Interval,CountMax} in Match; ok dtucker, djmmarkus2-5/+9
2016-11-23Clean up some abuse of the .Va macro to achieve a visual effect: omit it ortb1-10/+8
replace it with more appropriate macros where possible or necessary. input & ok schwarze
2016-11-23Add Ericsson N5321gwfeinerer1-2/+3
OK jmc@
2016-11-23Copyright and licenseschwarze6-12/+301
2016-11-23Add Copyright and license.schwarze1-5/+50
Garbage collect the empty RETURN VALUES section.
2016-11-23Add Copyright and license.schwarze1-3/+65
Merge documentation of ERR_print_errors_cb(3) from OpenSSL.
2016-11-23Add Copyright and license.schwarze1-3/+56
Merge a correction and a clarification from OpenSSL.
2016-11-23Add Copyright and license.schwarze2-43/+143
Like OpenSSL, move some text from ERR(3) to the fitting page ERR_put_error(3). Merge documentation of ERR_add_error_vdata(3) from OpenSSL. Drop useless statement about void functions returning no values.
2016-11-23For mouse keys, use the mouse pane as the default current pane.nicm3-7/+21
2016-11-23Error on invalid modifier keys.nicm1-2/+5
2016-11-23Copyright and licenseschwarze4-8/+203
2016-11-23Some socket splicing tests on loopback hang with large mbufs andbluhm1-3/+11
reduced buffer size. If the send buffer size is less than the size of a single mbuf, it will never fit. So if the send buffer is empty, split the large mbuf and move only a part. OK claudio@
2016-11-23Move as much code out of a startup hook as possiblemikeb2-50/+72
To be able to perform asynchronous operations early we need to have a robust polling mechanism with flexible condition check semantics. A new hv_wait interface provides such facilities. Right now hvn(4) submits NVS commands and sleeps waiting for a interrupt to fire and run the completion code and it will take some effort to convert this code to be able to poll instead of tsleep. But VMBus attachment, channel scanning, etc can done at an earlier stage. Lets see if this sticks.
2016-11-23Test that af-to cannot be used together with route-to, reply-to, dup-to.bluhm2-0/+14
2016-11-23Explicitly forbid to combine af-to with route-to in pfctl. Thebluhm2-23/+16
parser cannot handle that correctly and is is unclear wether the kernel code would work. Remove the feature until someone needs it and properly implements and tests it. OK mike@ sashan@ mpi@
2016-11-23M_*WAIT* flags cannot be treated as boolean valuesmikeb1-6/+6
2016-11-23Keep checks for local delivery close to in_ouraddr().mpi1-7/+7
ok claudio@
2016-11-23Empty strings are invalid arguments.mpi1-2/+2
Fix a regression introduced when merging the two options parsers. ok stsp@
2016-11-23Disable debugging outputmikeb3-5/+3
2016-11-22Fix panic on detach hook when interfaces get destroyed.rzalamena1-2/+3
ok reyk@
2016-11-22Don't attempt to call vm_remove() with a NULL vm: some functions likereyk1-6/+7
config_getvm() already removed the vm on failure! Found by mlarkin@
2016-11-22Add "features request" support and reply validation.rzalamena1-13/+66
ok reyk@
2016-11-22Fix error path of config_setvm() and its callers. This unbreaksreyk2-52/+31
loading of invalid kernel files. Reported by mlarkin@ OK mlarkin@
2016-11-22Restore previous errno after log_warn*() to make sure that it neverreyk1-1/+3
alters it. OK mlarkin@
2016-11-22various cleanup;jmc6-33/+36
2016-11-22Fold union pf_headers buffer into struct pf_pdesc (enabled by pfvar_priv.h).procter7-181/+155
Prevent pf_socket_lookup() reading uninitialised header buffers on fragments. OK blum@ sashan@
2016-11-22Implement support for version negotiation using hello messages. Thisrzalamena5-19/+200
also prevents connections from switching the version in the middle of the operation. tweak from and ok reyk@
2016-11-22Fix printf of NULL for the FILTERERR case when the tempfile is emptymillert1-2/+2
or missing. From Sebastien Marie.
2016-11-22Fix CPU info struct.visa1-2/+3
2016-11-22Add Copyright and license and improve .Nd.schwarze1-3/+51
2016-11-22Make sure /var/syspatch/$OSREV is not on a read-only mount-point when doingajacoutot1-2/+2
a rollback.
2016-11-22Use CPUID flags to determine working componentsmikeb1-2/+9
This adds a few checks to make sure we're not trying to use features that are not advertised with CPUID feature flags and avoid attaching when Xen viridium emulation is turned on. Prompted by a report from Kirill Miazine <km at krot ! org>, thanks! Discussed with reyk@.
2016-11-22Return different error number to know which test is failing.mpi5-38/+38
2016-11-22synctb1-1/+3
2016-11-22Fix OFP spelling for version bitmap define in ofp header and tcpdump, alsorzalamena2-6/+6
change the truncation message in hello with the standard one. ok reyk@
2016-11-22There is no need for res when there is already ret.reyk1-5/+4
2016-11-22Add Copyright and license.schwarze1-20/+54
Pull in a small number of typo fixes from OpenSSL. Drop speculations about future developments that OpenSSL deleted as well. This page is a mess for at least three reasons: (1) it doesn't actually document all functions listed in the SYNOPSIS, (2) it ought to be split into functional groups of reasonable size, and (3) the user interface is ill-designed to the point of absurdity. In view of item (3), i'm loath to tackle items (1) and (2), so i'm leaving this in its present sorry state for now, refraining even from renaming it to ENGINE_add(3) and expanding the NAME section as OpenSSL did - because that would merely sweep all the turds under the rug.
2016-11-22Enforce that ifioctl() is called at IPL_SOFTNET.mpi2-5/+15
This will allow us to keep locking simple as soon as we trade splsoftnet() for a rwlock. ok bluhm@
2016-11-22Insert disabled VMs into vmd(8)'s queues and allow vmctl(8) to display them.edd4-15/+66
Tested by Jon Bernard and reyk@. OK reyk@, no objections mlarkin@. Thanks
2016-11-22Add support for the sun9i USB PHYs and attach to the sun9i EHCI controllers.kettenis1-4/+45
Doesn't work yet, but it is a step in the right direction.
2016-11-22Allow passing an explicit return code to sp_err() in case we don't want to exitajacoutot1-21/+24
right away. Factorise some common stuff. Be consistent in variables subtitution.
2016-11-22Enforce that pr_ctlinput, pr_slowtimo and pr_fasttimo are calledmpi1-4/+10
at IPL_SOFTNET. This will allow us to keep locking simple as soon as we trade splsoftnet() for a rwlock. ok bluhm@
2016-11-22Enforce that pr_ctloutput is called at IPL_SOFTNET.mpi1-13/+29
This will allow us to keep locking simple as soon as we trade splsoftnet() for a rwlock. ok bluhm@
2016-11-22Normalize the io input buffer internally when reinstalling the io event, soeric5-19/+11
the caller doesn't have to bother with this. ok gilles@ sunil@
2016-11-22rename _default_digest.3 to _default_digest_nid.3, since this pagejmc2-5/+5
describes only one function, _default_digest_nid(); ok schwarze, who informs me openssl already came to this conclusion in june of this year;
2016-11-22Copyright and licenseschwarze3-7/+151
2016-11-22Add Copyright and license.schwarze1-2/+60
Mention that EC_GROUP_free(3) and EC_GROUP_clear_free(3) accept NULL.