summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Prevent tiled producing a corrupt layout when only one column is needed,nicm2011-03-071-2/+2
| | | | from Karl Ferdinand Ebert.
* Support passing through escape sequences to the underlying terminal bynicm2011-03-074-27/+76
| | | | | | | | | | using DCS with a "tmux;" prefix. Escape characters in the sequences must be doubled. For example: $ printf '\033Ptmux;\033\033]12;red\007\033\\' Will pass \033]12;red\007 to the terminal (and change the cursor colour in xterm). From Kevin Goodsell.
* Declare the inline function pf_addr_compare() non-static in pfvar.hbluhm2011-03-072-5/+5
| | | | | | to make it reusable by pf fragment reassembly. No functional change. discussed with henning@, claudio@, deraadt@, kettenis@ ok guenther@
* - style consistencyjasper2011-03-071-6/+3
| | | | ok ckuethe@
* hardware lists are sorted;jmc2011-03-071-3/+3
|
* List Dynex DX-SC51 as supported card. ok jakemsrstsp2011-03-071-2/+4
|
* - use fork(2)/exec(3) instead of system(3) to execute the specified action,jasper2011-03-072-10/+17
| | | | | | | | as the launched command used to be terminated when usbhidaction terminates. using fork here prevents that. from vadim zhukov ok otto@
* no Pp before/after Sh;jmc2011-03-071-2/+1
|
* run makewhatis during pkg_create in verbose mode.espie2011-03-074-26/+65
| | | | | tweak temp manpage generation a bit, so that it has correct names in its own directory, because makewhatis will be really pissed off otherwise.
* add editline support; from freebsd. ok deraadt@otto2011-03-075-6/+89
|
* continguous -> contiguoushenning2011-03-074-8/+8
| | | | From: "Anthony J. Bentley" <anthonyjbentley at gmail dot com>
* The scheduling 'nice' value is per-process, not per-thread, so move itguenther2011-03-078-32/+29
| | | | | | into struct process. ok tedu@ deraadt@
* noone will ever use NTFS on alphaderaadt2011-03-071-2/+1
|
* Do not leak information about the software usedschwarze2011-03-071-3/+1
| | | | | | | | | into PostScript and PDF documents behind the user's back. Joerg Sonnenberger pointed out that almost all software creating PostScript and PDF documents does so, even on OpenBSD, but that doesn't make the leakage much better in my book. According to all standards i could find, this information is optional. Issue originally reported by deraadt@; "commit!" kristaps@.
* Clean up date handling,schwarze2011-03-0717-191/+165
| | | | | | | | | | | | as a first step to get rid of the frequent petty warnings in this area: - always store dates as strings, not as seconds since the Epoch - for input, try the three most common formats everywhere - for unrecognized format, just pass the date though verbatim - when there is no date at all, still use the current date Originally triggered by a one-line patch from Tim van der Molen, <tbvdm at xs4all dot nl>, which is included here. Feedback and OK on manual parts from jmc@. "please check this in" kristaps@
* The global_int information acpi collects is not used by amd64.deraadt2011-03-063-11/+4
| | | | ok ketttenis
* fix function name in error/debug messages; ok marcostsp2011-03-061-4/+4
|
* Tweak definition and some uses of PREFIX macro to avoid includingguenther2011-03-062-5/+5
| | | | | | doubled slashes in compiled in paths. ok deraadt@, cross-compilation testing and ok drahn@
* Extract the new function frag6_deletefraghdr() from frag6_input()bluhm2011-03-062-19/+33
| | | | | to make it reusable by pf. No functional change. ok henning@, claudio@
* Make sure MEMORYBARRIER(SYNC_REG) performs a read/write bus_space_barrier,miod2011-03-061-2/+2
| | | | | instead of a read barrier only, as it is used in read-modify-write cycles. ok mjacob
* Add an "rc_bg" variable that is undefined by default and allows to startajacoutot2011-03-062-8/+18
| | | | | | | a daemon in the background. man page tweaks from schwarze@ discussed with an ok schwarze@ robert@
* Clarify.ajacoutot2011-03-061-3/+3
| | | | ok schwarze@ jmc@
* wrong type for variable; spotted by christian.siebert@cs.tu-chemnitz.dederaadt2011-03-061-3/+3
| | | | ok guenther
* Fix PR 6267: recheck POSIXLY_CORRECT each time getopt_long() starts a newguenther2011-03-053-44/+16
| | | | | | | | argv and don't suppress the handling of leading '-' in optstring when POSIXLY_CORRECT is set. Based on patch from Eric Blake. ok and manpage update from millert@, manpage ok jmc@
* Fix potential crash when GZIP variable set and more than 512 commandmillert2011-03-051-22/+30
| | | | line args specified. Closes PR 6573. OK deraadt@
* Shell output redirection truncating the destination fileschwarze2011-03-051-7/+15
| | | | | | | | is neither a bug nor a property of cat(1), so rename BUGS to CAVEATS. When showing a bad example, also tell the reader what to do instead. While here, use .Dl to display complete shell command lines, and - as suggested by jmc@ - avoid displays in the middle of sentences. feedback and ok jmc@
* remove a stray character (editing accident) i introduced a year ago;schwarze2011-03-051-4/+3
| | | | | while here, improve the grammar of the preceding sentence; ok jmc@
* since the bus_space_barrier function does the same membar operation forderaadt2011-03-051-10/+2
| | | | | | all cases, it should not waste time doing extra if/else if/else if/else conditions. i wonder how much this is going to speed up sparc64... ok miod kettenis
* Cronyx Omega-PCI is supported; from Alexei Malininjmc2011-03-051-2/+3
|
* fix description of -g; from Pascal Stumpfjmc2011-03-051-3/+3
|
* tweak; ok okanjmc2011-03-051-3/+3
|
* Correct msgbuf_write() example. OK jmc@ and nicm@claudio2011-03-051-3/+3
|
* Wait until the DMA engine is stopped before unmapping buffers and descriptors.kettenis2011-03-051-1/+24
| | | | | | Fixes DMA errors seen on sparc64. ok miod@
* Minor polishing that was missed during the recent rc.subr(8) split:schwarze2011-03-052-28/+17
| | | | | | * Avoid markup of "daemon" when not explicitly referring to the variable. * Improve some wording, remove one typo and one useless .Pp. Reminded by jmc@, ok jmc@ ajacoutot@
* If an auto-allocation scheme fails because there are not enoughkrw2011-03-051-3/+9
| | | | | | | available partitions (e.g. many spoofed logical partitions) try the next scheme rather than giving up. "sane" deraadt@ ok matthew@
* The function pf_tag_packet() never fails. Remove a redundant checkbluhm2011-03-054-22/+10
| | | | | and make it void. ok henning@, markus@, mcbride@
* Add TouchScreen support. Makes newer Gunze USB TouchScreen devices work.kettenis2011-03-044-16/+115
| | | | ok deraadt@
* Apparently keeping some USB devices in reset for too long makes themkettenis2011-03-041-2/+2
| | | | | | | | non-functional. Reduce the root port reset delay to 100 ms. This is still twice as long as the delay mandated by the standard, but makes the Gunze TouchScreen on the Sony Vaio VGN-UX91S and a few other devices work. ok jakemsr@
* kill is_rx_elem_unknown.fgsch2011-03-043-16/+3
| | | | damien@ ok. ports checked by sthen@.
* Two fixes by Micah Cowan: make mouse work properly beyond >127 on signednicm2011-03-042-5/+5
| | | | | char architectures and properly parse $TMUX by stopping the socket path at the first comma.
* gather most pci conf register manipulation into a new function,jakemsr2011-03-041-63/+63
| | | | | | azalia_configure_pci(). use that function in azalia_attach() and azalia_resume(). fixes post-resume "static" during playback for some machines with ATI chipsets.
* add support for the (POSIX) -H flagokan2011-03-043-7/+17
| | | | feedback and ok millert@, sobrado@, jmc@
* add -W flag (whiteexp), as opposed to pulling in a hardcoded defaultokan2011-03-042-9/+27
| | | | | | value from spamd/grey.c; mostly from ohauer@gmx.de in PR/6142. ok beck@
* Peek at the interrupt status register before poking with the reply postmikeb2011-03-041-1/+4
| | | | | | | | queue. In some situations this prevents us from reading a garbled reply. If this commit breaks your mpi, please report ASAP. The issue was reported and the fix was verified by Emeric Boit. Thanks! Ok dlg, kettenis, marco (who warned us and wanted to test more)
* Indent block correctly.claudio2011-03-041-4/+4
|
* add -H (opposite of -h) to always print name. ok deraadt millerttedu2011-03-043-12/+21
|
* repair arguments passed to pfctl; PR 6142, ok beckderaadt2011-03-031-2/+2
|
* Prevent division-by-zero when scaling down to the screen resolution. Makekettenis2011-03-033-6/+18
| | | | | | | the WSMOUSEIO_SCALIBCOORDS fail with EINVAL if the settings would cause a division-by-zero. ok deraadt@
* Crank MAXDSIZ up to 2G on macppc and socppc.ajacoutot2011-03-032-4/+4
| | | | ok miod@ drahn@ kettenis@
* Remove expired certs.dhill2011-03-031-174/+0
| | | | ok beck@ fgsch@