summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-06syncTheo de Raadt
2016-01-06delete vi catalog space; ok millertTheo de Raadt
2016-01-06document the signify command for the next release, so that users canSebastian Benoit
verify before the netx upgrade. document that signify.1 needs an edit bump once in a while. ok tedu@ florian@
2016-01-06Remove mention of message catalog dir.Todd C. Miller
2016-01-06We don't use configure so this file is full of lies and we areTodd C. Miller
better off without it.
2016-01-06Remove msgcat from the documentation.Todd C. Miller
2016-01-06Remove prototype for now-deleted f_msgcat().Todd C. Miller
2016-01-06Remove the actual message catalogs. From Martijn van DurenTodd C. Miller
2016-01-06Remove the msg_cat() function and adjust its former callers.Todd C. Miller
From Martijn van Duren
2016-01-06Remove the numeric identifiers at the beginning of the messagesTodd C. Miller
which used to be used as the message number to lookup in the catalog. From Martijn van Duren
2016-01-06Remove the message catalog DB. This removes the msg_open() andTodd C. Miller
msg_close() functions along with the msgcat command. From Martijn van Duren
2016-01-06correct format string. ok deraadt stspTed Unangst
2016-01-06Initialize the A-MPDU parameters field in HT capability elements.Stefan Sperling
ok kettenis@
2016-01-06Add DRM_RENDER_ALLOW flag to the appropriate ioctls such that pledge "drm"Mark Kettenis
allows them.
2016-01-06add a bug that the path whitelist is not available at this time.Ted Unangst
2016-01-06turn off the whitepath code for now; we're not sure it's ready for releaseTed Unangst
ok deraadt
2016-01-06remove unnecessary casts where the incoming type is void *.Ted Unangst
2016-01-06tidy up whitespace, etc.Ted Unangst
2016-01-06Long ago, malloc internally had two kinds of failures, warnings and errors.Ted Unangst
The 'A' option elevated warnings to errors, and has been the default for some time. Then warnings were effectively eliminated in favor of everything being an error, but then the 'a' flag turned real errors into warnings! Remove the 'a' option entirely. You shouldn't have used it anyway. ok tb tdeval
2016-01-06malloc option 'a' to go awayTed Unangst
2016-01-06use int64_t for arithmetic. 64 bits ought to be enough for anyone.Ted Unangst
ok deraadt millert schwarze
2016-01-06print more info about keventTed Unangst
2016-01-06syncTheo de Raadt
2016-01-06some old signify keys no longer have relevance to new releases.Theo de Raadt
prompted by comments from naddy
2016-01-06We want the first, not the last, OpenBSD partition in the MBR.Kenneth R Westerback
2016-01-06Forgot to remove this file on my previous commitmestre
2016-01-06Remove unnecessary header files from phantasia(6)mestre
Lesson learnt: don't include an header sorted alphabetically just because. The external definition of variables was done on phantglobs.h but their declaration was on phantstruct.h and therefore the latter must be included before the former. It's easier to just include phantstruct.h inside phantglobs.h since it always need it. With help and OK from tb@
2016-01-06ansifytb
ok mestre@
2016-01-06Prevent integer overflows in sosend() and soreceive() by convertingStefan Kempf
min()+uiomovei() to ulmin()+uiomove() and re-arranging space computations in sosend(). The soreceive() part was also reported by Martin Natano. ok bluhm@ and also discussed with tedu@
2016-01-06fix comment typosStuart Henderson
2016-01-06This is just an example and we don't have to bump the set's versionReyk Floeter
number all the time, but let's use install59.fs as it will be the first release that includes vmm.
2016-01-06Last step of ansification of phantasia:tb
Convert function() to function(void). ok mestre@
2016-01-06Ansify the bulk of phantasia. No binary change on amd64. Basedtb
on an older diff by mestre. ok mestre@
2016-01-06Ansify map.c.tb
ok mestre@
2016-01-06Use return instead of exit from main.tb
ok mestre@
2016-01-06Ensure that iwn(4) always uses a CCK rate as last fallback in the firmware'sStefan Sperling
tx rate retry table. This will hopefully make 11n mode work in very noisy environments. iwm(4) already does the same. ok kettenis@
2016-01-06iwm(4) adjusts the firmware's tx rate retry table dynamically so we mustStefan Sperling
tell the firmware to always try the first rate in the table first. ok kettenis@
2016-01-06Follow the spec and check the SCI_EN bit to see if ACPI has alreadyMark Kettenis
been enabled and don't bother enabling it again if it is. This should fix systems that don't implement legacy mode and therefore set ACPI_ENABLE and ACPI_DISABLE to zero. ok mlarkin@, yasuoka@
2016-01-06Add pledge "drm", which allows a subset of the drm(4) ioctls. These areMark Kettenis
basically only the ioctls that Linux allows on the so-called "render nodes". For now, it also allows DRM_IOCTL_GET_MAGIC and DRM_IOCTL_GEM_OPEN, as we don't implement prime/dma-buf yet in OpenBSD. That still leaves a big gaping hole, so they will be removed as soon as we can. Based on a diff by robert@, who did all the heavy lifting by studying the behaviour of the chromium GPU process, with some further suggestions by deraadt@. ok jsg@, deraadt@, robert@
2016-01-06deactivate POOL_DEBUG for releaseSebastian Benoit
ok deraadt, jsg
2016-01-06revert 1.87, more work is needed hereMike Belopuhov
2016-01-06Bring efidev.c goodness into softraid.c by returning and displayingKenneth R Westerback
the same error messages on GPT processing failures. Add a message about failed GPT entry checksum error to both. This was inadvertantly deleted in the switch to one entry at a time processing. tweaks & ok yasuoka@ jsing@
2016-01-05remove long deprecated "set debug "none|urgent|misc|loud" levels inSebastian Benoit
pf.conf. Change this before upgrade or pf.conf won't load. florian@ henning@ phessler@ jung@
2016-01-05add 6.0 firmware keyStuart Henderson
2016-01-05Bump example pubkey filenames for 5.9Florian Obser
OK benno@
2016-01-056.0 packages keyChristian Weisgerber
2016-01-05include all i915 drm ioctls on top of the common drm onesRobert Nagy
ok deraadt@, kettenos@, guenther@
2016-01-05syncTheo de Raadt
2016-01-05+.Xr video 1 ,Jason McIntyre
from gerald hanuer
2016-01-05Remove the IEEE80211_NO_HT macro. Reduces ifdef spaghetti, enables 11n modeStefan Sperling
in bsd.rd, and might uncover some bugs. Suggested by tedu@ and deraadt@. ok sthen@ jasper@ deraadt@