summaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
2022-06-26Discourage nfs mounting of /var by not talking about it.Theo de Raadt
ok sthen florian
2022-06-26catch up on some country name changesTheo de Raadt
2022-06-26CLang -> ClangJonathan Gray
2022-06-26Remove unused VOP_POLL().Visa Hankala
OK mpi@
2022-06-25Add some airports I've landed airplanes at.Mike Larkin
2022-06-25Add HFE in Ahnui, China.mbuhl
I flew from there to Xi'an in 2019.
2022-06-22Document a locking constraint that applies to barriers.Visa Hankala
OK cheloha@
2022-06-21Avoid saying that running netstart manually post-boot will "reset anStuart Henderson
existing interface to its default state", because it doesn't. ok jmc@
2022-06-14Add Longreach airport (LRE), which I visited so long ago I had to check withJonathan Matthew
my parents.
2022-06-12aplsart(4)Mark Kettenis
2022-06-10Add OSW in Orsk (Аеропорт Орсрк), ↵Klemens Nanni
where I landed and departed at one of the two gates to have a great time in the Ural last year.
2022-06-08Add Lublin airport (LUZ), which I visited today during a day trip to Lublin.Frederic Cambus
2022-06-08stfpinctrl(4)Mark Kettenis
2022-06-06stfclock(4)Mark Kettenis
2022-06-02Since \. is not a character escape sequence, re-classify it from theIngo Schwarze
wrong parsing class ESCAPE_SPECIAL to the better-suited parsing class ESCAPE_UNDEF, exactly like it is already done for the similar \\, which isn't a character escape sequence either. No formatting change is intended just yet, but this will matter for upcoming improvements in the parser for roff(7) macro, string, and register names. See the node "5.23.2 Copy Mode" in "info groff" regarding what \\ and \. really mean.
2022-05-31Rudimentary implementation of the \A escape sequence, following groffIngo Schwarze
semantics (test identifier for syntactical validity), not at all following the completely unrelated Heirloom semantics (define hyperlink target position). The main motivation for providing this implementation is to get \A into the parsing class ESCAPE_EXPAND that corresponds to groff parsing behaviour, which is quite similar to the \B escape sequence (test numerical expression for syntactical validity). This is likely to improve parsing of nested escape sequences in the future. Validation isn't perfect yet. In particular, this implementation rejects \A arguments containing some escape sequences that groff allows to slip through. But that is unlikely to cause trouble even in documents using \A for non-trivial purposes. Rejecting the nested escapes in question might even improve robustnest because the rejected names are unlikely to really be usable for practical purposes - no matter that groff dubiously considers them syntactically valid.
2022-05-31Trivial patch to put the roff(7) \g (interpolate format of register)Ingo Schwarze
escape sequence into the correct parsing class, ESCAPE_EXPAND. Expansion of \g is supposed to work exactly like the expansion of the related escape sequence \n (interpolate register value), but since we ignore the .af (assign output format) request, we just interpolate an empty string to replace the \g sequence. Surprising as it may seem, this actually makes a formatting difference for deviate input like ".O\gNx" which used to raise bogus "escaped character not allowed in a name" and "skipping unknown macro" errors and printed nothing, whereas now it correctly prints "OpenBSD".
2022-05-30Dummy implementation of the roff(7) \V (interpolate environment variable)Ingo Schwarze
escape sequence. This is needed to get \V into the correct parsing class, ESCAPE_EXPAND. It is intentional that mandoc(1) output is *not* influenced by environment variables, so interpolate the name of the variable with some decorating punctuation rather than interpolating its value.
2022-05-30sfgpio(4)Mark Kettenis
2022-05-27rework the text on mtu and mss, according to some notes from sthen;Jason McIntyre
ok sthen
2022-05-27Normalise markup.Antoine Jacoutot
from Raf Czlonka
2022-05-26Introduce a new daemon_execdir variable for changing to a specified directoryAntoine Jacoutot
before running rc_rcexec. Based on an proposal from openbsd.tech at aisha.cc ok robert@ abieber@
2022-05-21Document rc_exec.Antoine Jacoutot
2022-05-20Re-classify the roff(7) \r (reverse line feed) escape sequenceIngo Schwarze
from "ignore" to "unsupported" because when an input file uses it, mandoc(1) is likely to significantly misformat the output, usually showing parts of the output in a different order than the author intended.
2022-05-20fold some of the useful "obsolete" information into the main textMarc Espie
2022-05-18document what PLIST_REPOSITORY does a bit betterMarc Espie
2022-05-17document /etc/login.conf.d/Jason McIntyre
help robert ajacoutot ok ajacoutot
2022-05-17ditch most of the obsolete stuffMarc Espie
there are still a few odds and ends which should make their way to the rest of the manpage eventually (or to the faq), useful information that's not immediately available elsewhere
2022-05-15add StarTech USG5GA30 to the device listJonathan Matthew
from Brad
2022-05-13add so-a0-hr-b0 to list for firmware files used by iwx(4)Stefan Sperling
2022-05-10update the iwx entry;Jason McIntyre
2022-05-09update iwx(4) man page in light of AX210/AX211 supportStefan Sperling
2022-05-09Mention in the "proto icmp" section that standard stateful rules (i.e. theStuart Henderson
default type of PF rule) don't allow ICMP responses unless they match an existing state - tweak "keep state (sloppy)" to suggest from the first sentence of the paragraph that it affects more than TCP. ok sashan@ bluhm@
2022-05-09pf.conf(5) should mention impact of sloppy state handling on ICMPAlexandr Nedvedicky
OK @bluhm
2022-05-05Update documentation for switch of default ruby version to 3.1Jeremy Evans
2022-05-01Install useful btrace scripts into /usr/share/btrace directory.Alexander Bluhm
OK tedu@
2022-04-30Enforce proper memory ordering in refcnt_rele() and refcnt_finalize()Visa Hankala
Make refcnt_rele() and refcnt_finalize() order memory operations so that preceding loads and stores happen before 1->0 transition. Also ensure that loads and stores that depend on the transition really begin only after the transition has occurred. Otherwise the object destructor might not see the object's latest state. OK bluhm@
2022-04-28add Sabrent NT-SS5G, sort the device list alphabeticallyJonathan Matthew
from Brad
2022-04-23tweak previous: update .Bl -column lineIngo Schwarze
2022-04-23Show which bwfm(4) chipsets are 11n and which are 11ac. ok miod@Stuart Henderson
2022-04-21fix SEE ALSO;Jason McIntyre
2022-04-20Use glob to expand wildcards in "other device" paths rather than aJoshua Stein
custom implementation that only allowed matching all files in a directory. ok millert
2022-04-19document the actual problems that pkg_check-version can diagnoseMarc Espie
2022-04-19document the bits of the kstat struct that providers work with.David Gwynne
the kstat api is a small part of implementing a kstat, most of it depends on how you set up the kstat struct.
2022-04-19remove a comment saying we might want kstat_remove.David Gwynne
we did want it, so it's there and documented.
2022-04-16update list of firmware files used by iwx(4)Stefan Sperling
2022-04-16ssh-keygen's -G/-T have been replaced with -M generate/screen.Darren Tucker
2022-04-13we're not 2000 anymore, direct the user to using binary packages, the portsMarc Espie
tree should be about on par with release(8) okay schwarze@, sthen@
2022-04-12Make this more readable.Antoine Jacoutot
Document gi-docgen which is coming to gnome.port.mk soon.
2022-03-31missing full stop;Jason McIntyre