summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-30self-relocating crt0 bits for sh, and enable static pie by default. With someMiod Vallat
archdep.h help from kettenis@
2014-12-30Clean up and optimize _dl_start a bit by using immediate addressing forMiod Vallat
the constants whenever they fit, and avoiding saving and restoring registers we don't need to preserve.
2014-12-30Rename a few functions name. Will help factorize some stuffs.Antoine Jacoutot
2014-12-30do not print an empty order in case pkg_scripts is undefinedRobert Nagy
ok ajacoutot@
2014-12-30add_flags() does not need any action argument.Antoine Jacoutot
Use the flags variable instead of hardcoding the output in preparation for further subcommands.
2014-12-30Remove redundant md memcpy.S and memmove.S lines. The mi configJonathan Gray
definitions will find the md .S files for these.
2014-12-30Fix handling of R_MIPS_REL32_64 relocations that reference a symbol.Mark Kettenis
Fixes remaining problems with static PIE on mips64.
2014-12-30add __bounded as appropriate.David Gwynne
looks good to deraadt@ miod@ and tedu@
2014-12-30Test the weird construct of a user-defined macro starting (but notIngo Schwarze
ending!) the definition of another user defined macro. Mandoc already handles this correctly, make sure it won't get broken.
2014-12-30copy bcrypt autotune from encrypt(1) and expose via crypt_newhashTed Unangst
ok deraadt miod
2014-12-30let the "make groff" maintainer target show groff warningsIngo Schwarze
2014-12-30unifdef __APCS_26__ we don't run on anything with a 26 bit program counter.Jonathan Gray
This codepath was removed in the NetBSD code this is derived from back in 2003 and was removed in Bitrig earlier this year. No binary change.
2014-12-30Rework disklabel reading taskq to plug holes pointed out by jsing@.Kenneth R Westerback
Diff from dlg@. ok jsing@
2014-12-30typo in comment: ouput => outputDamien Miller
2014-12-29regenKenji Aoyama
2014-12-29Add audio(4) related entries.Kenji Aoyama
ok miod@
2014-12-29Minor cleanup:Todd C. Miller
o doreply() just calls build_reply() o remove a few dead stores and useless variables o use the asprintf() return value OK deraadt@
2014-12-29Make the PLT read-only on powerpc as well.Mark Kettenis
ok kurt@
2014-12-29* Ukrainian airports; from Alexey SuslikovChristian Weisgerber
* add Tampere; from Timo Myyra
2014-12-29Toggle the TX_RING_KICK_WRAP bit when appropriate.Mark Kettenis
2014-12-29impose some limits on the ideal rounds so nothing too crazy happens whenTed Unangst
the clock results are weird
2014-12-29encrypt is now built into instbin, do not need to use the /mnt versionTheo de Raadt
2014-12-29switch encrypt to auto scaling bcrypt rounds. ok deraadtTed Unangst
2014-12-29don't leak timing info about padding errors by generating a fake keyTed Unangst
afterwards. openssl has a more complicated fix, but it's less intrusive for now to simply hoist the expensive part (fake key generation) up without sweating a branch or two. ok bcook jsing
2014-12-29document ordering more explicitly;Ingo Schwarze
feedback and ok ajacoutot@ rpe@
2014-12-29useless change. overwriting the nul byte with a newline means b64_ntopTed Unangst
can use the whole buffer, even the last byte.
2014-12-29rename fingerprint struct field. no longer exposed to users, but since it'sTed Unangst
not technically a fingerprint as others understand the term, pick another. now it's a keynum! after an email from Florian Weimer
2014-12-29remove the inspect debug command. should not be used by users, who are notTed Unangst
supposed to know what fingerprints are or that they exist.
2014-12-29Assert that rtrequest1(9) is always called at IPL_SOFTNET instead ofMartin Pieuchot
doing a spl dance. This matters for RTM_DELETE because a deleted route entry is always returned without having its reference counter increased when an `rtp' argument is given. In this case, we do not want to call splx() that might free this route. Inputs from millert@, ok blambert@, mikeb@
2014-12-29Add line continuation to be consistent with rc_pre(); ok sthen@Antoine Jacoutot
2014-12-29pexp is not needed; ok sthen@Antoine Jacoutot
2014-12-29syncJonathan Gray
2014-12-29re-add missing space in confirm prompt that got lost in -r1.18Jasper Lievisse Adriaanse
ok espie@
2014-12-29Explicitely include <uvm/uvm_extern.h> in order to build on variable page sizeMiod Vallat
architectures.
2014-12-29Some missing break's.Brad Smith
2014-12-29Some cleaning up of the ioctl handling bits to bring things in lineBrad Smith
with the other drivers.
2014-12-29Some cleaning up of the ioctl handling bits to bring things in lineBrad Smith
with the other drivers.
2014-12-29It sends and receives packets (until we run out of the initial receive blocks).Mark Kettenis
2014-12-28The greatest happiness is to scatter inferiour APIs, to drive themKenneth R Westerback
before you, to see their files reduced to ashes, to see those who love them shrouded in tears, and to gather into your API all their invocations. In other words, workq is no more. There is only taskq. ok kettenis@ dlg@ (creator of taskq) jmc@
2014-12-28spelling fix; from daria suchecka via krzystof warzechaJason McIntyre
2014-12-28Fairly complete Rx path hardware initialization.Mark Kettenis
2014-12-28Replace last workq in tree (reading disklabels from newly attachedKenneth R Westerback
disks) with taskq. Diff originally from blambert@. ok kettenis@
2014-12-28Fix subtle typo.Joel Sing
2014-12-28Add regress tests for default option handling.Joel Sing
2014-12-28Allow a default option to be specified by having a NULL name, but a validJoel Sing
option type. In this case process the option as per normal.
2014-12-28Add regress tests for multiple argument callback functions.Joel Sing
2014-12-28Provide an option type that allows for a callback function to consume anJoel Sing
arbitrary number of arguments. This will allow for more complex option handling as required by some of the openssl(1) applications.
2014-12-28Add option parsing regress tests with end of options handling.Joel Sing
2014-12-28Teach option parsing that a single hyphen denotes the end of named optionsJoel Sing
(as currently only implemented by some of the openssl(1) applications).
2014-12-28Add regress tests for option parsing with multiple unnamed arguments.Joel Sing