summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-08-10whitespace nitsJonathan Gray
2005-08-10Some of the bits that will be required for AX88178.Jonathan Gray
PHY doesn't attach possibly due to not twiddling GPIO pins correctly, rx and tx pipes being swapped not dealt with yet.
2005-08-10- we do not need a .Pp before a normal listJason McIntyre
- but we do need .Bk/.Ek in SYNOPSIS
2005-08-10Audiovox RTM-8000 has a st16650 uart but its fifo is 16 bytes instead ofFederico G. Schwindt
32. add a workaround for the time being. better code will be added later. tested by Andreas Gunnarsson <andreas at zzlevo dot net>, deraadt@ ok.
2005-08-10print session time in fixed widthNikolay Sturm
ok henning, deraadt
2005-08-10syncHenning Brauer
2005-08-10MyriNet adapter found in the alpha, theo okHenning Brauer
2005-08-10suggested by art, go for it deraadt, ok miod@Todd T. Fries
remove ECOFF support
2005-08-10remove drivers from here.Alexandre Anriot
ok jsg@ deraadt@
2005-08-10do not forget to also add the local roots to the cache.Joris Vink
fixes a segfault in localmode. ok xsa@
2005-08-10style..Xavier Santolaria
2005-08-10Some additional ICH7 bits which aren't strictly necessary to workJonathan Gray
but are desireable. Tested by Mark Peoples, ok mickey@
2005-08-10Mention if the disk supports IDLE IMMEDIATE with UNLOAD FEATUREJonathan Gray
when listing information about it. ok grange@
2005-08-10- pre-existent -> pre-existingNiall O'Higgins
ok jmc@
2005-08-10kill spaces OK deraadt@Claudio Jeker
2005-08-10.Xr cvswrappers(5);Xavier Santolaria
2005-08-10fgets() expects the 2nd arg to be an int. OK jfb@ joris@.Xavier Santolaria
2005-08-10typoMarc Espie
2005-08-10Propogate server's leap indicator flags to clients; ok henning@Darren Tucker
2005-08-10add lmtemp(4) and viasio(4).Alexandre Anriot
ok grange@
2005-08-10record unsafe operations in a journal, so that we can give a muchMarc Espie
more specific message than `package XXX contains unsafe operations'.
2005-08-10bug fix: if default is not available, do not push it for installation.Marc Espie
2005-08-10use the appropriate flags to scsi_scsi_cmd during autoconf so we dont spinDavid Gwynne
forever on mp kernels problem reported by matthieu baptiste
2005-08-10- comapared -> comparedJason McIntyre
- correct word order - grammar
2005-08-10although groff understands `.Ar bob )', it does not understand `.Ar ( bob',Jason McIntyre
so mark up the opening bracket with .Pf; remove non- -mdoc .br;
2005-08-10- typoJason McIntyre
- generate a backslash using `\e', not `\\'
2005-08-10Add an additional media subtype IFM_TDM_E1_G704_CRC4 for TDM interfaces.Claudio Jeker
This makes it possible to distinguish between E1 G.704 mode with and without CRC4 checksum. Also add an operating mode IFM_TDM_MASTER to specify that the card has to provide the clock source for the line. OK deraadt@ canacar@
2005-08-10Pass the correct peer to rde_apply_set(). rde_apply_set() needs to knowClaudio Jeker
the peer where the prefix came from so that prepend-neighbor works. Extend rde_filter() and make sure that the correct peer is passed. Until now most cases resulted in a NULL peer causing a nasty crash that was found by David Ulevitch. OK henning@
2005-08-10use correct return code where we exit();Xavier Santolaria
2005-08-10add global -w option and document it; ok jmc jorisXavier Santolaria
2005-08-10use correct return codes when we exit(); ok jorisXavier Santolaria
2005-08-10macro, capitalization, and layout improvementsJared Yanovich
2005-08-10typo, ablt -> ableBrad Smith
2005-08-10grammar; ok jmcJared Yanovich
2005-08-10- sys/mount.h wants sys/param.hJared Yanovich
- path can also cause EFAULT ok jmc
2005-08-10- layout, macro, and punctuation tweaksJared Yanovich
- refer to formal parameters consistently - kill a duplicate description of EMFILE in ERRORS ok jmc
2005-08-10- macros, punctuation, wording, and rewordingJared Yanovich
- fix issue from -r 1.5 about a reference to flock(2) being moved to the wrong place - use FD_CLOEXEC instead of 1 to fcntl() - refer to formal parameters consistently ok jmc
2005-08-10- standard ERRORS layoutJared Yanovich
- refer to formal parameters correctly ok jmc
2005-08-10- macrosJared Yanovich
- chflags() also returns EINVAL for invalid flags - chflags() also returns EINVAL for attempts to change flags on devices as non-superuser ok jmc
2005-08-10- punctuation & wordingJared Yanovich
- fix up RETURN VALUES section ok jmc
2005-08-10- punctuation fixesJared Yanovich
- refer to formal parameters consistently. ok jmc
2005-08-10- wordingJared Yanovich
- remove mention of antiquated protocols (e.g. ISO) - in example, use err() instead of errx() on error return since errno will be set - addrlen may also cause EFAULT ok jmc
2005-08-10Call open(2) with O_NONBLOCK and O_NOFOLLOW to make sure mtree can'tTodd C. Miller
be halted by a FIFO or special device. Use fgetln() instead of fgets() to handle arbitrarily long lines. If a line starts with a comment char, don't check for line continuation char. Adapted from a diff by Solar Designer. OK deraadt@ henning@
2005-08-09Adjust for new signal trampoline.Mark Kettenis
2005-08-09- Don't depend on the APM_CRIT_RESUME event to run PWR_RESUME power hooksUwe Stuehler
after a APM_CRIT_SUSPEND_REQ event. This fixes non-working devices after resume from battery low suspend. - Don't suspend automatically on APM_BATT_LOW because that's what could be too early (and we now understand APM_CRIT_SUSPEND_REQ).
2005-08-09same hereMarco Pfatschbacher
3.8 not 3.5
2005-08-09ifstated isn't released before 3.8Marco Pfatschbacher
ok jmc@
2005-08-09if we are replacing a package, the messages for @extra stuff should beMarc Espie
slightly different. Noticed by rohee@
2005-08-09Introduce new route decision tunable "rde med compare (always|strict)".Claudio Jeker
If set to always the med will also be compared between different AS. The default is strict which is the way the RFC specifies it. OK henning@
2005-08-09Add VIS_GLOB to escape special characters used by shell-style globbing.Todd C. Miller
From Solar Designer based on changes in FreeBSD. OK deraadt@