Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-02-21 | distinguish between unreadable directories and non packages. | Marc Espie | |
problem found by John L. Scarfone, who runs a paranoid root. | |||
2004-02-21 | First regression test for pkg_add, checking packages-specs lists. | Marc Espie | |
(the nice thing about having this as perl modules is that we CAN write regression tests) | |||
2004-02-21 | keep O_NONBLOCK after teh tcp sessions are established, claudio ok | Henning Brauer | |
2004-02-21 | typo | Marc Espie | |
2004-02-21 | SCSI_DATA_OUT doesn't mean transfer from host in all cases, when | Alexander Yurchenko | |
requesting sense we reuse the same scsi xfer so flags lie and we should check for C_SENSE too. Eliminates pciide timeouts at the end of every burning with cdrecord. Bug introduced, found and then fixed by costa@. ok costa@ krw@ | |||
2004-02-21 | Implement the arm pthreads pieces, only two regress fails, preemption_float | Dale Rahn | |
and sigmask. | |||
2004-02-21 | sync | Theo de Raadt | |
2004-02-21 | commit man page always, on all architectures | Theo de Raadt | |
2004-02-21 | sync | Theo de Raadt | |
2004-02-21 | sync | Theo de Raadt | |
2004-02-21 | move sparc64 to gcc3. to move up please install a snapshot (or, install | Theo de Raadt | |
this, build the right gcc, do a make build and pray) | |||
2004-02-21 | aperture stuff | Theo de Raadt | |
2004-02-21 | much more goo | Theo de Raadt | |
2004-02-21 | Note that some BIOSes have a 128 GB hard disk addressing limit. | Tom Cosgrove | |
Found by Marco Peereboom. ok jmc@, miod@, nick@, weingart@ | |||
2004-02-21 | kill old copies of gcc-local | Marc Espie | |
2004-02-21 | +gcc-local, common to both gcc versions. | Marc Espie | |
2004-02-21 | lose gcc-local as well. | Marc Espie | |
2004-02-21 | zap cccp.1, install phantom info. | Marc Espie | |
ok theo | |||
2004-02-21 | Tidy up installboot -v output. | Tom Cosgrove | |
requested by and ok deraadt@ | |||
2004-02-21 | Eliminate the quirks SDEV_NOSTARTUNIT, UMASS_QUIRK_NO_START_STOP, and | Kenneth R Westerback | |
UMASS_QUIRK_FORCE_SHORT_INQUIRY. Fixes a bunch of USB devices. Based on work by Mycroft in NetBSD. ok tdeval@ deraadt@. | |||
2004-02-21 | Correctness is also not using err(1, "out of memory") if malloc() | Tom Cosgrove | |
fails (per err(3)). Ditto for strdup(). ok henning@ | |||
2004-02-21 | Fix a race. scsi_done() can free a scsi_xfer, so relying on the values | Kenneth R Westerback | |
of fields in the scsi_xfer after scsi_done() could have been called is bad. cdrecord can now safely burn cd's at high speeds. Found by grange@, original diff by costa@, cleaned up by grange@ and further polished by me following input from deraadt@. ok grange@ costa@ deraadt@. | |||
2004-02-21 | Tidy up installboot -v output. | Tom Cosgrove | |
requested by and ok deraadt@ | |||
2004-02-20 | do not install a ccpp.1 link | Theo de Raadt | |
2004-02-20 | turn off TRAP_SIGDEBUG | Theo de Raadt | |
2004-02-20 | uppercase CRT; | Jason McIntyre | |
2004-02-20 | - uppercase CRT | Jason McIntyre | |
- kill .Pp before list - \\ -> \e - "" -> .Sq | |||
2004-02-20 | Make passwd understand master.passwd.byname so it can work in a secure | Mats O Jansson | |
environment. Patch from llx at hitech dot ch, modified by me. -moj ok henning@ | |||
2004-02-20 | use an old syscall (int $0x80) for the sigreturn; otherwise %rcx is trashed. | Theo de Raadt | |
we've been chasing this for 2 weeks.. finally spotted by kettenis@chello.nl | |||
2004-02-20 | bring back old cdelay & ldelay code, make it work; millert ok | Theo de Raadt | |
2004-02-20 | add `ruler' to the list of helpful options; | Jason McIntyre | |
suggested by millert@ | |||
2004-02-20 | Print ifname in PFSYNC_ACT_CLR message if present. | Ryan Thomas McBride | |
2004-02-20 | add section on helpful ex options; | Jason McIntyre | |
suggested by and ok millert@ | |||
2004-02-20 | Make pfsync deal with clearing states bound to a group or interface (eg | Ryan Thomas McBride | |
pfctl -i fxp0 -Fs). Also don't send out individual state deletions if we're sending a clear message, move pfsync_clear_states() inside splnet, and fix if_pfsync.h includes in pf.c and pf_ioctl.c. ok cedric@ dhartmei@ | |||
2004-02-20 | Regen | Miod Vallat | |
2004-02-20 | PKG_DESTDIR / -B support in pkg_add. | Marc Espie | |
2004-02-20 | Regen; except for alpha, the only changes are in comments. | Miod Vallat | |
2004-02-20 | MAKEDEV.8 improvement pack: | Miod Vallat | |
- refer to the section 4 manual page for every device target, whenever possible - repair a few minor quoting errors - repair a few sorting errors - fix a few device descriptions (ideally they would be synched with the .Nd line of their manpages, but we are not there... yet) - minor mdoc fixes Thanks to jmc@ for review and a lot of constructive criticism. | |||
2004-02-20 | move wildcard rewriting down. Allows flavors in package-specs to | Marc Espie | |
properly contain a dot and other fun characters. Reported by Jason Ish. Survives a full ports build. | |||
2004-02-20 | mmclock is long dead, conflicts with rd even. | Miod Vallat | |
2004-02-20 | cleanup of 6.2: Options, set, and editor startup files | Jason McIntyre | |
- remove options we don't support - correct default values - nicer formatting of table - remove reference to edit | |||
2004-02-20 | correctness is err vs. errx use | Henning Brauer | |
From: Pedro Martelletto <pbastos@rdc.puc-rio.br> | |||
2004-02-20 | ypbin creates /var/yp/binding/<domainname>.<version> and /var/run/ypbind.lock | Henning Brauer | |
using open(2) with mode 0644 - however, these files _have_ to be world readable, and open's mode is subject to umask. do an explicit fchmod after open to set the mode to 0644 regardless of umask. ok maja@ deraadt@ | |||
2004-02-20 | More small adjustments of log messages. | Hans-Joerg Hoexer | |
2004-02-20 | This is amd64, not i386. | Miod Vallat | |
2004-02-20 | - sort options and SYNOPSIS | Jason McIntyre | |
- better document which options do/don't work together - add sections showing some possible uses of nc - code (comment) typos - sync usage() and help suggestions/improvements from otto@ ok deraadt@ | |||
2004-02-20 | - document .In, .Ex, and .Rv | Jason McIntyre | |
- keep the description of .Cd on one line - note that .Fd may be used w/ section 9 pages | |||
2004-02-20 | - add .In macro for include headers | Jason McIntyre | |
- remove obsolescent .Ex cruft - do not separate .%A with a comma if there are only two authors (from itojun@'s commit to NetBSD) - escape -1 in .Rv - add .Ex macro for exit values ok millert@ | |||
2004-02-20 | Fix some double free errors. While around, adjust a log message. | Hans-Joerg Hoexer | |
ok ho@ | |||
2004-02-20 | typo | Theo de Raadt | |