summaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
2016-11-03Add a proper annotation for portroach documentation linkDaniel Jakots
OK schwarze@
2016-11-03Re-add the Xr macro to syspatch now that it's hooked up.Antoine Jacoutot
2016-11-03Document the KVP interfaceMike Belopuhov
2016-10-31Update to reflect the changes necessary for noperm releases. Trim someTheo Buehler
more fat and avoid introducing unnecessary variables. with & ok tj, ok deraadt, prodded by robert
2016-10-31P is not settable enymoreOtto Moerbeek
2016-10-29Update the man page after the addition of MODPY_ABI_TAGDaniel Jakots
From sthen@
2016-10-28H is no moreOtto Moerbeek
2016-10-26Section name references are case sensitiveMike Belopuhov
2016-10-25minor tweaks;Jason McIntyre
2016-10-25provide an example based on the mbuf codeDavid Gwynne
2016-10-25bluhm@ suggested pointing out that cpumem_malloc_ncpus andDavid Gwynne
counters_alloc_ncpus preserve the contents of memory used by the boot cpu.
2016-10-25bluhm@ suggests that it is enough to say that the allocations willDavid Gwynne
be zeroed, and how they're zeroed is an implementation detail that doesnt really help the reader.
2016-10-25start documenting allocating per cpu data at boot time, and addingDavid Gwynne
memory for new cpus after theyve attached. some tweaks from jmc@ who will probably find more things wrong after this. im putting some suggestions in from bluhm@ shortly
2016-10-24fix SEE ALSO;Jason McIntyre
2016-10-24Make mfii(4) bio(4) capable.YASUOKA Masahiko
ok dlg
2016-10-21Add missing dot at beginning of macro line.Alexander Bluhm
2016-10-21more tweaks; ok dlgJason McIntyre
2016-10-21first stab at describing the per cpu counters apiDavid Gwynne
2016-10-21provos didnt write any of thisDavid Gwynne
2016-10-21tweak previous;Jason McIntyre
2016-10-21first cut at a man page for cpumemDavid Gwynne
2016-10-21add openbsd id;Jason McIntyre
2016-10-21man pages for vmm(4) i386Mike Larkin
2016-10-20Update to tzdata2016h from from ftp.iana.org.Todd C. Miller
2016-10-19GLOBAL_AUTOCONF_CACHE is the name of a file, not 'yes'. LeftoverTheo Buehler
from KERBEROS5 removal, spotted by Raf Czlonka.
2016-10-18Don't tell the programmer not to put variable declarations insideTodd C. Miller
blocks. OK guenther@ kettenis@
2016-10-18Use "continue;" instead of a bare ";" in the for() loop exampleTodd C. Miller
with no body.
2016-10-17R option doesn't compact memory at all; flags are not only useful forOtto Moerbeek
tetsing and debugging; mult-threaded programs use multiple pools
2016-10-17"send/received" -> "sent/received"Lawrence Teo
ok jmc@
2016-10-16Delete URL to dead site.Theo de Raadt
2016-10-15unify tmp depend generation.Marc Espie
- simpler uniform pattern - put the tmpfile in OBJDIR, so that mv doesn't whine about groups when using a separate builduser. okay millert@
2016-10-140xd0 -> 0xdb; ok deraadt@ millert@ tedu@Otto Moerbeek
2016-10-11link to http://mdocml.bsd.lv/mdoc/ below SEE ALSO;Ingo Schwarze
tweak and OK jmc@
2016-10-11Ports can be built with several (not just two) lua versions.Jeremie Courreges-Anglas
2016-10-11Remove vic(4)'s BUGS section that I added in 2006 when people wereReyk Floeter
still terrified about VMs - vic(4) was the first driver for a virtual interface in OpenBSD. The statement is still true but we all got used to the obvious fact: "BUGS There are tons of bugs in VMware and the underlying host operating systems. Please consider that the security of the OpenBSD guest can be circumvented by attacking the host environment." OK mikeb@
2016-10-10Fix typo "bfp".Alexander Bluhm
OK dlg@
2016-10-09add a manual page for psciJonathan Gray
2016-10-09Remove the vexpress platform abstraction and board id. All the devicesJonathan Gray
that attached to vexpress have been converted to fdt so this is no longer required.
2016-10-09sxipio now attaches with fdtJonathan Gray
2016-10-08Do not let "make all" run the tests in the subdirectories twiceIngo Schwarze
if a Makefile using <bsd.regress.mk> defines both SUBDIR and REGRESS_TARGETS. This helps for example src/regress/usr.bin/ssh/. Same for "make cleandir", don't run "make clean" twice in SUBDIR. OK bluhm@, and no opposition when shown on tech@.
2016-10-08Remove Xrs to vexpress(4) for drivers that no longer attach to it.Jonathan Gray
2016-10-08downgrade the description of SUDO somewhat; ok tbJason McIntyre
2016-10-08Dynamically attach sysreg(4) using the FDT.Jonathan Gray
2016-10-07no more imx.4;Jason McIntyre
2016-10-07imx(4) is no more.Mark Kettenis
2016-10-07document BUILDUSER; ok tbJason McIntyre
2016-10-07tweak previous;Jason McIntyre
2016-10-07Add a few tips on setting up hvn(4) interfacesMike Belopuhov
2016-10-06Use BUILDUSER as the owner of new links/directories created in 'make obj'Martin Natano
when started as root. diff by millert with tweaks by me ok tb deraadt
2016-10-05De-escalate to an unprivileged users during 'make build' and 'make release'.Martin Natano
- If you start make build as root, everything will be run as root. Nothing new here. New is, that you can set BUILDUSER=somebody and the unprived parts will be run as somebody. - If you start make build with sudo, the unprived parts will be run as the real user (meaning YOU). You can still set BUILDUSER=somebody and the uprived parts will run as somebody. - If you start make build as a normal user it will error out. "I'm sorry Dave." Note that DESTDIR must be on partition with the noperm flag set for make release to work correctly as an unprivileged user. idea and ok deraadt input and ok tb ratchov millert rpe, halex and probably others where part of the conversation to make this happen, thanks!