summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-08-19Copyright does not need its own .Sh, it is already commented.Jonathan Gray
ok jmc@ deraadt@
2005-08-19ipsecctl(8) can be used for manual setups too;Jason McIntyre
2005-08-19add /etc/ipsec.conf to FILES;Jason McIntyre
2005-08-19punctuation;Jason McIntyre
2005-08-19do not close the entries file until all files depending on it haveJoris Vink
been passed to the callback. ok xsa@
2005-08-19knight industries two thousand;Jason McIntyre
from stuart henderson (pr #4466);
2005-08-19Make note of inverted axis on X40s.Jonathan Gray
2005-08-19regenJonathan Gray
2005-08-19A few more ATI products: RS300 Host, Radeon X600 and FireGL V3100.Jonathan Gray
2005-08-19document manual keying with ipsecctlHans-Joerg Hoexer
ok, tweaks jmc@
2005-08-19style;Xavier Santolaria
2005-08-19more useful error messageHans-Joerg Hoexer
2005-08-19missing cast;Xavier Santolaria
2005-08-19if Unused is .Dq, then so is Hot Spare..Theo de Raadt
2005-08-19- sort optionsJason McIntyre
- tighten up a list - reference ses(4) and safte(4) in SEE ALSO
2005-08-19Spacing.Marco Peereboom
2005-08-19remove tempdir right away if it turns out we're not dealing with aMarc Espie
package at all.
2005-08-19trap SIGINT so that tempdirs get removed.Marc Espie
2005-08-18Only allow blocksizes that are powers of 2 between 512 and 64K. An sdKenneth R Westerback
device that returns any other value via READ CAPACITY or MODE SENSE will be marked 'drive offline'. Prevents divide by zero when calculating disk size in MB, amoung other interesting possibilities. ok mickey@ dlg@ deraadt@ millert@ marco@
2005-08-18sync with new functionality, and add a bit more meatTheo de Raadt
2005-08-18add support to stop blinking (-u) or use the alarm LED instead (-B)Theo de Raadt
2005-08-18Silly dlg did not read my old code careful enough. Missed 2 bits that areMarco Peereboom
necessary for the blinkenlight magic. Also removed some XXX cruft that was misleading.
2005-08-18Skip (trap) instruction in cpu_fork() instead of proc_trampoline().Mark Kettenis
Add special handling for init(8) in setregs(). Fixes returning from fork(2) in the child with a pending signal. ok deraadt@, art@ (screaming in agony)
2005-08-18Oops, previous fix would prevent standard input from being processed at allMiod Vallat
since it is not stat(2)'ed; spotted by fgs@, better fix by tom@
2005-08-18syncTheo de Raadt
2005-08-18on debug, print the tuple number along with the name to help debugging inFederico G. Schwindt
case of reserved tuples and pad to 0 the byte number. deraadt@ ok.
2005-08-18make sure dependencies are picked up;Jason McIntyre
from mpf@, tweaked by millert@
2005-08-18Update a few error descriptions w.r.t. obtaining the limitsJared Yanovich
that cause the errors to reality. ok millert, jmc
2005-08-18better diagnostics in case of bad arguments; ok dlgTheo de Raadt
2005-08-18Properly initialize 'end' in seq(), fixing a crashJared Yanovich
on input with long lines when the -n flag is given. ok millert
2005-08-18rework the addressing for blinking to make it like the hotsparesDavid Gwynne
help from and ok deraadt@
2005-08-18document M_WAITOK as a separate flag rather than a note to M_NOWAITDavid Gwynne
help from and ok jmc@ ok deraadt@ no objections art@
2005-08-18no need to wrap (sub-)section headers in quotes;Jason McIntyre
2005-08-18rearrange some sections to avoid having instructions and explanationsJason McIntyre
blocked together: it made the page difficult to read; ok mpf@ deraadt@
2005-08-18sync with nforce portion of pciide(4).Jonathan Gray
2005-08-18nforce SATA is supported now.Jonathan Gray
2005-08-18nforce SATA is supported now.Jonathan Gray
2005-08-18Match nforce 2/3/4 SATA using generic sata_chip_map().Jonathan Gray
Tested by dlg@ on nforce 3, and several people on nforce 4. ok deraadt@
2005-08-18if you show an example, BE CORRECT DAMNITTheo de Raadt
2005-08-18tweak SYNOPSIS;Jason McIntyre
2005-08-18Make zaudio(4) work like a laptop, so that when you plug your headphonesRobert Nagy
into the plug it changes the mute values so the speaker will be muted and the headphones will be unmuted. If you unplug the headphones, it will change everything back to the default state. help and ok from uwe@ pascoe@; tested by others
2005-08-18do not allow 0-length transforms; from freebsdTheo de Raadt
2005-08-18afterboot(8) MLINK to faq(8) is pointless;Jason McIntyre
ok deraadt@
2005-08-18Several boards incorporating SIS SATA chips have dellusions of granduerJonathan Gray
so we have to override the PCI class they claim to be. ok deraadt@
2005-08-18a step towards where dlg is heading next + knfTheo de Raadt
2005-08-18infrastructure to support blinking controlled via /dev/bio ioctls. theDavid Gwynne
code to do the actual blink is ifdefed out till marco can figure out what im doing wrong.
2005-08-18very basic blink support.David Gwynne
some manpage tweaks from jmc@
2005-08-18Comment out AR5212 entries where it is unknown if they work.Jonathan Gray
ok reyk@, jmc@
2005-08-18Malloc temporary buffers in pfioctl rather than having several largeChristopher Pascoe
pf_state buffers on the stack. ok henning mcbride
2005-08-18Rearrange pf_state and pfi_kif so that the parts of the structure neededChristopher Pascoe
to search for a particular entry in the RB trees are at the start of the structure. This permits us to place a much smaller structure on the stack in the interrupt paths that match packets against state entries. ok mcbride