Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-08-24 | surplus semicolon on if statement | Jonathan Gray | |
2008-08-23 | Slight speed improvement by using byte accesses on word boundaries for all | Miod Vallat | |
frame buffer memory operations, instead of word access on word boundaries. | |||
2008-08-23 | Pick the correct host adapter id from nvram. | Miod Vallat | |
2008-08-23 | add missing header needed by asprintf(). | Charles Longeau | |
ok otto@ deraadt@ | |||
2008-08-23 | make mbstowcs(NULL, string, 0) correctly return the length of the | Damien Miller | |
wchar_t string needed to represent "string", which in our case is just strlen(string); feedback & "looks right" deraadt@ | |||
2008-08-23 | unbreak MALLOC_OPTIONS=G that I broke in my last commit; | Damien Miller | |
slightly kludgey solution for until otto fixes it properly; ok otto@ | |||
2008-08-23 | - document -h | Jason McIntyre | |
- (re)organise the page a little - zap second "usage:" string from usage() | |||
2008-08-23 | ufs -> UFS; | Jason McIntyre | |
2008-08-23 | it's no longer necessary to build crunch by hand, so adjust the | Jason McIntyre | |
release instructions accordingly; | |||
2008-08-23 | fix calloc() for MALLOC_OPTIONS=J case: SOME_JUNK was being filled into | Damien Miller | |
the freshly mmaped pages disrupting their pure zeroness; ok otto@ deraadt@ | |||
2008-08-23 | unbreak wcschr(string, L'\0') which was incorrectly returning NULL | Damien Miller | |
rather than a pointer to the terminating nul; ok deraadt@ | |||
2008-08-22 | make sure we always map and unmap multiples of MALLOC_PAGESIZE; | Otto Moerbeek | |
case spotted by beck, one by me; ok deraadt@ beck@ | |||
2008-08-22 | Let lkms(4) support VSXXX-AB tablets in addition to the mice it already | Miod Vallat | |
supports, based on appendix C and D of the VCB02 (qdss) technical manual. Also parse the selftest results and report device errors. Not tested on actual tablet due to the lack of any; mouse operation is not disturbed. | |||
2008-08-22 | a ; in a bad place; dragonfly; ok mglocker | Theo de Raadt | |
2008-08-22 | Smarter implementation of calloc(3), which uses the fact that mmap(2) | Otto Moerbeek | |
returns zero filled pages; remember to replace this function as well if you provide your own malloc implementation; ok djm@ deraadt@ | |||
2008-08-22 | Instead of spewing error messages about link status, support link status | Theo de Raadt | |
like all drivers should ok miod | |||
2008-08-22 | sync | Theo de Raadt | |
2008-08-22 | make it section 8 | Theo de Raadt | |
2008-08-22 | more crunch stuff goes away | Theo de Raadt | |
2008-08-22 | No need to enter crunch | Theo de Raadt | |
2008-08-22 | mksuncd lives in the base now, and one does not need to go do fiddly | Theo de Raadt | |
things in distrib before building snaps or cds of any kind, any more. | |||
2008-08-22 | move mksuncd to here (but still only sparc64 build) | Theo de Raadt | |
2008-08-22 | merge crunchide into crunchgen as the -h flag. this is not yet done the | Theo de Raadt | |
nicest way since there is lot of code that has to churn, but it works. | |||
2008-08-22 | Merge crunchgen & crunchhide (using name checking), and move to usr.sbin | Theo de Raadt | |
next step is to not install it as two programs, but be even more clever | |||
2008-08-22 | set _POSIX_JOB_CONTROL and _POSIX_SAVED_IDS to the correct values; ok millert | Theo de Raadt | |
2008-08-22 | sync | Theo de Raadt | |
2008-08-22 | Don't install libbfd and libopcodes and the associated headers. | Mark Kettenis | |
They really are just a way to share common code between gdb and binutils (which in the GNU world are seperate packages). The developers (and I'm one of them) make absolutely no effert to maintain a stable API/ABI. If ports people really need libbfd or libopcodes, they should just package a suitable version. ok weingart@, deraadt@ | |||
2008-08-22 | sync | Theo de Raadt | |
2008-08-22 | mention machine/cpu.h for the CPU identifiers. | Brad Smith | |
2008-08-22 | mention machine/cpu.h for the CPU identifiers. | Brad Smith | |
2008-08-22 | Set PIE address range to avoid or minimize mmap pressure due to limited | Kurt Miller | |
address space. The space between PAGE_SIZE and the non-pie fixed link address creates no mmap pressure so use that space for PIE. However on hppa the non-pie fixed link address is PAGE_SIZE so just use a small range for PIE to minimize mmap pressure. okay miod@ | |||
2008-08-22 | default file transfer type is binary, not ascii; | Igor Sobrado | |
commands which toggle settings can take an explicit on or off argument to force the setting appropiately, show these arguments in usage; synchronize synopsis and usage of commands; spacing; KNF; other minor documentation tweaks. written with help by jmc@ ok jmc@ (documentation), martynas@ (type usage and default file transfer type) | |||
2008-08-22 | - -R before -r in SYNOPSIS/usage() | Jason McIntyre | |
- avoid marking up `|' | |||
2008-08-22 | simplification, and repair findblkmajor for name## lookups; ok krw | Theo de Raadt | |
2008-08-22 | ANSI and other cleanups; ok krw | Theo de Raadt | |
2008-08-22 | Add a hack to manually kick off rebuilds. This will need some love in the | Marco Peereboom | |
near future. ok deraadt | |||
2008-08-22 | synbc | Theo de Raadt | |
2008-08-22 | more puc happiness | Theo de Raadt | |
2008-08-22 | kill trailing whitespace; | Jason McIntyre | |
2008-08-22 | After spotting a + record, continue scanning and pick up later groups | Theo de Raadt | |
in the file. Problem spotted by drahn. ok millert | |||
2008-08-22 | Replace the old algorithm that included the process id as part of the | Todd C. Miller | |
temporary file name with one that only uses random data. OK deraadt@ | |||
2008-08-22 | Test the IPv6 address printing of pf_print_host() in net/pf.c. | Alexander Bluhm | |
help and ok mpf | |||
2008-08-22 | Make pf_print_host() print IPv6 addresses correctly. | Alexander Bluhm | |
ok mpf | |||
2008-08-21 | Assign the ip and ip6 pointers in ipsp_process_packet() only if a | Alexander Bluhm | |
header of the matching address family is available. Especially do not read ip->ip_off from an IPv6 packet header. ok markus | |||
2008-08-21 | Add an optional separator to stringize() and use it from do_list() to | Simon Bertrang | |
match the GNU pkg-config --list-all output. ok ckuethe@ | |||
2008-08-21 | Rip out the remnants of the vblank signal stuff. Nothing uses it, and | Owain Ainsworth | |
it's stupid anyway. Most of this was ifdefed out. | |||
2008-08-21 | Document new gnu extensions, okay jmc@, otto@ | Marc Espie | |
2008-08-21 | in gnu-m4 mode, allow definition of the empty macro (yes, autoconf 2.62 | Marc Espie | |
actually uses this, bleh) okay otto@ | |||
2008-08-21 | extend format support to cater to recent GNU autoconf | Marc Espie | |
okay otto@, some useful ideas from miod@ | |||
2008-08-21 | gnu extension: 0rN:az for baseN numbers. | Marc Espie | |
okay otto@ |