summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-03-18sighTheo de Raadt
2011-03-18- assert copyrightJasper Lievisse Adriaanse
ok ckuethe@
2011-03-18format the message when a module doesn't validate more like fd.o pkg-config, ↵Jasper Lievisse Adriaanse
which will also be printed when PKG_CONFIG_DEBUG_SPEW isn't set.
2011-03-18add a 'pc_path' variable to the pkg-config.pc cache entry.Jasper Lievisse Adriaanse
this variable will return the paths where pkg-config searches for .pc files, when queried.
2011-03-18- add basic validation for .pc files, at least Name, Description and Version ↵Jasper Lievisse Adriaanse
have to be set. this is what fd.o pkg-config requires at least.
2011-03-18fix a small buglet when PKG_CONFIG_SYSROOT_DIR was set, it only handled the ↵Jasper Lievisse Adriaanse
first occurence of -I/-L correctly but didn't prepend the sysroot to later occurences, now it does. no functional change when PKG_CONFIG_SYSROOT_DIR wasn't set.
2011-03-18minor related tweaks:Marc Espie
- use //= instead of if (!defined) - don't special-case code for pkg-config itself, prime cache with versioning info. - more accurate regexps for parsing arguments - don't use join() when we mean map() leads to: - fix bug in argument splitting, zap ", " used as argument separation. okay jasper@, tested by landry@
2011-03-18oh, it should stayTheo de Raadt
2011-03-18Fix obj directory probing to support cross compiling.Matthew Dempsky
"Go for it" deraadt@
2011-03-18Fix firmware loading at startup (and resume); from Tim van der MolenTheo de Raadt
based on discussion with damien; tested by others on the lists
2011-03-18amd64 mtrr interrace went awayTheo de Raadt
2011-03-18old style mtrr interface went awayTheo de Raadt
2011-03-18syncTheo de Raadt
2011-03-18Old-style MTRRs were never used on amd64, so remove the remaining tracesPhilip Guenthe
of them, as well as some other unused proc md_flags bits: MDP_COMPAT and MDP_SYSCALL. ok mikeb@
2011-03-18Add ukdetach() so that detaching an unknown SCSI device doesn't resultMatthew Dempsky
in a kernel panic. ok krw@
2011-03-17- recognize OMAP3630/DM3730, as found in the beagleboard xMJasper Lievisse Adriaanse
ok drahn@
2011-03-17Uncommitted bits. Spotted by deraadt@, who theorizes I have insuffientKenneth R Westerback
sushi level.
2011-03-17add missing .El;Jason McIntyre
2011-03-17use dma_alloc/dma_free instead of malloc to allocate buffers which needTheo de Raadt
to be in the right address space. help from matthew and krw
2011-03-17make more dma pools -- all the way up to 64K. at least the scsiTheo de Raadt
SCIOCCOMMAND wants a dma'able object that big. should we handle this another way, by handling that data in a buf? ok krw
2011-03-17Document RC_DEBUG.Antoine Jacoutot
"I love having slaves" && ok robert@
2011-03-17- introduce the INRC environment variable so that rc.subr(8) knows if itRobert Nagy
gets called from rc.local or rc.shutdown - notify the user if a given operation was successfull or not by appending the (ok) or (failed) strings to the end of the daemon name - hide stdout and stdin unless RC_DEBUG=1 is set, otherwise all the function names will be printed out and all output sent to stdin or stdout - since from now on rc.subr is taking care of printing out the daemon names on startup, we don't need to do this from rc.{local,shutdown} anymore brainkilling work done by me and ajacoutot@, ok ajacoutot@
2011-03-17Ansify non-ansified function definitions. No functional change.Alexandr Shadchin
ok miod@
2011-03-17Make the various findopenbsd() functions non-recursive, eliminatingKenneth R Westerback
a global, a couple of parameters, and opening up possibility of traversing much longer EBR lists without blowing the stack. Make seach algorithm the same as used in kern/subr_disk.c by checking all primary partitions in the MBR/EBR before moving to next EBR. This makes it more likely that everybody finds the same OpenBSD partition. Largely from a diff posted to tech@ by ucsavl.
2011-03-17since we stopped installing the usd docs, it no longer makesJason McIntyre
sense for DESCRIPTION to point to SEE ALSO; from Alexis Fouilhe
2011-03-17use a DEFAULT_RATE macro instead of hardcoding 44100, no object changeAlexandre Ratchov
2011-03-16Using mandoc_char(7) escapes like "K\(:onig" for German umlautsIngo Schwarze
is incorrect. The escape sequence "\(:o" represents "o diaeresis", not "o umlaut". These are two very different phonological phenomena that only happen to be represented by the same diacritic mark. In -Tascii mode, all renderers correctly render "\(:o" (o diaeresis) as plain "o", but that rendering is incorrect for "o umlaut", which must be transliterated to the digraph "oe" in -Tascii. There is no mandoc_char(7) escape for "o umlaut", so we must give the digraph as plain text in the mdoc(7) source code. For manuals, ASCII rendering is clearly much more important than PostScript or HTML rendering. Besides, we should not sacrifice correct rendering in any mode in order to get slightly nicer rendering in some other mode. "von mir aus" (roughly = "I don't mind") naddy@
2011-03-16revert previous as it breaks nfs client as reported by kili@Jasper Lievisse Adriaanse
req'd by jsg@
2011-03-16o diaeresis is 246 (U+00F6)Christian Weisgerber
2011-03-16Replace ISO 8859-1 character (o with diaeresis) with proper mandoc symbol.Christian Weisgerber
From: Anthony J. Bentley
2011-03-16Recognize LM6002 as prefix for earlier Fuloong designs, and also recognizeMiod Vallat
prefixless `1.2.*' version information as LM6002, with a warning message as their may be surprises if there are non-Fuloong prototypes in the wild ever with 1.2 PMON code. Per discussion with Roland Kammerer who is the happy owner of an LM6002.
2011-03-16anthonyjbentley@gmail.com has a SMC Networks SMCWUSB-N2Theo de Raadt
2011-03-16Use the help pager code, but repair it in various ways.Theo de Raadt
(I had to fix the $PAGER support beyond the patch supplied by Simon) from Simon.Nicolussi@student.uibk.ac.at
2011-03-16fix trap sending in snmpd by adjusting snmpctl to the imsg libutilReyk Floeter
change and fixing the ber element handling in snmpd itself. tested by jsg@
2011-03-16spelling.Okan Demirmen
ok yasuoka@
2011-03-16use timerclear macro. while here, fix spelling.Okan Demirmen
ok yasuoka@
2011-03-16various cleanup;Jason McIntyre
2011-03-16If we get a packet larger than if_hardmtu skip it.Jonathan Gray
Tweaked version of a diff from Loganaden Velvindron who sees a large garbage frame on his device.
2011-03-16nl_types.h doesn't need to be #included to use nl_langinfo(). PointedPhilip Guenthe
out by Andres Perera (andres.p at zoho.com)
2011-03-15syncTheo de Raadt
2011-03-15Remove evaluation of PATH_LOCALE environment variable because it can beStefan Sperling
abused to cause an integer overflow and serves no real purpose. Found by Alexander Schrijver. ok millert deraadt
2011-03-15sanity check, prompted by common work with Florent TribouilloyMarc Espie
ok deraadt@, millert@
2011-03-15let smtpd use user-provided Diffie-Hellman parameters for ephemeral keyGilles Chehade
exchange. if no DH parameters are found, fallback to builtin parameters as was done until now. since we now accept user-provided DH parameters, make smtpd more strict and fatal() if the parameters are bogus. bump the key size of the DH parameters from 512bits to 1024bits, it might be bumped further after some more research. thanks to mikeb@ for his suggestions diff ok mikeb@ , man ok jmc@
2011-03-15unbreak tree for nested endian.h includesTheo de Raadt
2011-03-15Bunch of white space and style adjustments to make amd64 versionKenneth R Westerback
the same as i386 version. No change to .o file except for the one %lld -> %u format fix.
2011-03-15Attach one sensordev per softraid device rather than one sensordev perJoel Sing
discipline. This results in a drive sensor being attached for each volume under the same sensordev, instead of having multiple sensordevs each with a single drive. Fixes PR6576. Tested by Mattieu Baptiste. ok deraadt@
2011-03-15Add a -B flag to netstat which displays buffer sizes for TCP sockets.Joel Sing
With feedback from bluhm@ ok bluhm@ sthen@
2011-03-15Put daemon between double quotes to make it clear we are talking aboutAntoine Jacoutot
the daemon class, not the daemon script. ok schwarze@
2011-03-15Document daemon_class, with wording help from jmc@Antoine Jacoutot
2011-03-15use timerclear macroOkan Demirmen
ok djm@