summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-13resolve conflictsDamien Miller
2012-10-13import OpenSSL-1.0.1cDamien Miller
2012-10-13syncTheo de Raadt
2012-10-13Move WOL activation to DVACT_POWERDOWN (instead of doing it twice, atTheo de Raadt
DVACT_QUIESCE and DVACT_SUSPEND time). Tested by stsp.
2012-10-13This device should not put itself into D3 by itself when going to WOL;Theo de Raadt
allow the pci subsystem to do that based on BIOS information if it needs. Tested by stsp
2012-10-13TZ does not fit on the floppy media (we have encountered this on otherTheo de Raadt
platforms) ok jsing
2012-10-13move the exit status stuff into an EXIT STATUS section;Jason McIntyre
2012-10-13pxe spec reference is better placed in STANDARDS;Jason McIntyre
2012-10-13fix typo, keyword is exists, not existMarc Espie
2012-10-13Only build fdboot on the appropriate architectures. Also fix the path toJoel Sing
check-boot.pl so that it works with both boot and fdboot.
2012-10-13In update verbose mode, when skipping an update candidate due to anJeremy Evans
unmatching pkgpath, if no valid update candidates are found, print that we are skipping the update candidate and all pkgpaths for both the currently installed package and the skipped update candidate. This is designed to help diagnosing issues when ports move locations in the tree, but the necessary @pkgpath entries are not correctly added to the PLIST. Much help and OK espie@
2012-10-13we are now warning about this !Marc Espie
2012-10-13fix test now that we forbid unclosed specsMarc Espie
2012-10-13when makemap is executed in sendmail mode, check if ".db" is part of theGilles Chehade
filename and imply it otherwise so that the following works: makemap hash /etc/mail/aliases < aliases
2012-10-13Make map_lookup() and make_compare() set errno on failure to distinguishEric Faurot
between "no match" and "internal error" (e.g. missing or broken db file). Adapt alias expansion and ruleset matching code to check for such errors, in which case the current processing is aborted, and a temporary failure is reported to the smtp session. ok gilles@
2012-10-13Forgot to add _iscsid to mail/aliasesDavid Coppa
Pointed out by ajacoutot@
2012-10-12Added I-O DATA RSA-PCI2 support.sasano
This card is OX16PCI954-based, but uses 14.7456MHz clock to support 921600bps. ok by deraadt@
2012-10-12Document duplicate inference rules. That's posix behavior, and what we do.Marc Espie
2012-10-12- implement "revert-buffer", which reverts the current buffer to what's on diskJasper Lievisse Adriaanse
- split gotoline() into the argument handling part and the part that actually goes to the specified line number so it can be re-used by revertbuffer() input/ok florian@ haesbaert@
2012-10-12Add $OpenBSD$ CVS Ids.Reyk Floeter
ok sf@
2012-10-12For consistency with other OSes and ease of porting, makePhilip Guenthe
get{sock,peer}name() behave like accept() when the involved UNIX-domain socket isn't bound to an address, returning an AF_UNIX sockaddr with zero-length sun_path. Based on diff from robert@ and mikeb@ ok robert@ deraadt@
2012-10-12Cleanup false positives for uninitialized uses.Christiano F. Haesbaert
Part of the work to remove -Wno-uninitialized. ok blambert jsg
2012-10-12Add the _iscsid user, required by iscsidDavid Coppa
OK claudio@
2012-10-12no need to fetch and print the fw revisionMike Belopuhov
2012-10-12major cleanupMike Belopuhov
2012-10-12zap trailing whitespace;Jason McIntyre
2012-10-12a bit of janitoringMike Belopuhov
2012-10-12Now that the file offset/alignment issue has been found and fixed, switchJoel Sing
back to using -N when linking i386 boot(8). This prevents issues with the .data file offset becoming mismatched with its LMA, once the binary grows.
2012-10-12Force 16 byte alignment in boot(8) srt0.S, since this is more likely to getJoel Sing
the required file offset (0x120) for the .text segment.
2012-10-12make some assumptions more explicit, after some confusion...Marc Espie
2012-10-12Add a script that checks the file offsets for boot(8)'s .text and .dataJoel Sing
sections match up with their LMAs. This is necessary since biosboot does not perform relocation. Discussed with deraadt@
2012-10-12Use fdboot for amd64 floppy disk media.Joel Sing
ok deraadt@
2012-10-12Build a 'fdboot' that will be used for floppy disk media. This can be madeJoel Sing
smaller than the normal 'boot', however for now it is identical. ok deraadt@
2012-10-12fix infinite loops on regexps that match the empty word, which isMarc Espie
especially bad during runtime as we trap ^C. For instance ${A:C/-*//g}. Problem found by rpe@ Do the same as other modern tools: advance by one char and repeat, so that there's at most one empty word match at each position. okay millert@
2012-10-12Extend the "retry" field to 16 bits. The new quadratic retry formulaEric Faurot
makes the maximum retry delay a bit to small on 8 bits. ok gilles@ chl@
2012-10-11fix "disable lidsuspend on shutdown":Alexander Hall
- pull in machine/cpu.h so we can actually see CPU_LIDSUSPEND if it's there - fix the resulting compilation errors now that the code is actually used "Just go for it" deraadt@
2012-10-11- if argc / argv not empty after getopt() loop, display usageGilles Chehade
2012-10-11- no need to assign a separator to the last route flag since we're notGilles Chehade
going to use it
2012-10-11- no need to set imsg_type to IMSG_MFA_CLOSE when we're not going to answerGilles Chehade
to SMTP ..
2012-10-11- remove dead storeGilles Chehade
spotted by clang
2012-10-11- remove dead storeGilles Chehade
spotted by clang
2012-10-11- map_create() takes a map_src not a map_kindGilles Chehade
ok eric@ and chl@
2012-10-11- char * -> unsigned char *Gilles Chehade
spotted by clang, ok eric@ and chl@
2012-10-11- ssize_t -> size_tGilles Chehade
spotted with clang, ok eric@ and chl@
2012-10-11- replace "all" with "any"Gilles Chehade
- add examples for how to accept mail from external source and for a specific domain
2012-10-11- replace "from all" and "for all" with "from any" and "for any"Gilles Chehade
ok eric@, chl@
2012-10-11do not attempt a hardware list - it is currently out of date to the pointJason McIntyre
of being unhelpful, and we can;t realistically change that; help/ok mk
2012-10-11package checksums are no longer MD5, from Dawe on tech@.Stuart Henderson
2012-10-11rework the firmware interface and incorporate all the guts intoMike Belopuhov
one single function instead of spreading them across 10 others.
2012-10-11kill a scary unused functionMike Belopuhov