summaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
2021-12-21Multiply the number of states in the example adaptive timeout calculationJonathan Matthew
by 10 so it works with the numbers in the config, which were previously multiplied. ok dlg@
2021-12-19aplmbox(4)Mark Kettenis
2021-12-16arm64 can boot from softraid too; ok patrickT.J. Townsend
2021-12-16Attach com over acpi on amd64. Some hardware uses a different interruptAnton Lindqvist
assignment compared to the the legacy one supported by com over isa. This causes the console to halt once userland takes over as no interrupts are received. The actual address and irq can be read from ACPI, kettenis@ already added support for arm64 which paved the way for amd64. Some consoles that previously attached over isa are now expected to attach over acpi. Thanks to patrick@ for testing on arm64. ok kettenis@
2021-12-13acct(4) ac_tty shouldn't need NODEV from sys/param.h (which is kernel API),Theo de Raadt
-1 is sufficient to indicate the process had no controlling tty, removing one more sys/param.h include in our userland ok millert
2021-12-13Handle multi-port controllers in uslcom(4)Visa Hankala
A multi-port CP210x device presents each COM port as a separate USB virtual COM port interface. When attaching uslcom(4), take the USB interface from the attach arguments instead of using interface 0. This lets the driver access the different ports of a quad-port CP2108. Tested with a single-port CP2102 by jsg@ OK jsg@ deraadt@
2021-12-12Add vnode parameter to VOP_STRATEGY()Visa Hankala
Pass the device vnode as a parameter to VOP_STRATEGY() to allow calling the correct vop_strategy callback. Now the vnode is also available in the callback. OK mpi@
2021-12-09aplpmgr(4)Mark Kettenis
2021-12-05sytle -> style; adapted from changes by saitoh masanobuJason McIntyre
2021-12-04update the firmware file list, helped by stsp;Jason McIntyre
2021-11-29points people to more current ways to find package information.Marc Espie
with inputs from danj@ and kn@, thx guys
2021-11-26Transmiter -> TransmitterJonathan Gray
2021-11-26addresss -> addressJonathan Gray
2021-11-23add llvm-ar(1) to the build with its two dependencies libLLVMDlltoolDriverRobert Nagy
and libLLVMLibDriver; switch LLD_ARCHs to llvm-ar(1) by skipping the installation of binutils' ar(1) and linking llvm-ar(1) to ar(1) tested on amd64, i386, arm64 and mips64 ok patrick@, kettenis@
2021-11-23nameserver->name server, as the rest of the file does;Jason McIntyre
2021-11-22pcyrtc(4)Mark Kettenis
2021-11-22Implement rfc6840 (AD flag processing) if using trusted name serversJeremie Courreges-Anglas
libc can't do DNSSEC validation but it can ask a "security-aware" resolver to do so. Let's send queries with the AD flag set when appropriate, and let applications look at the AD flag in responses in a safe way, ie clear the AD flag if the resolvers aren't trusted. By default we only trust resolvers if resolv.conf(5) only lists name servers on localhost - the obvious candidates being unwind(8) and unbound(8). For non-localhost resolvers, an admin who trusts *all the name servers* listed in resolv.conf(5) *and the network path leading to them* can annotate this with "options trust-ad". AD flag processing gives ssh -o VerifyHostkeyDNS=Yes a chance to fetch SSHFP records in a secure manner, and tightens the situation for other applications, eg those using RES_USE_DNSSEC for DANE. It should be noted that postfix currently assumes trusted name servers by default and forces RES_TRUSTAD if available. RES_TRUSTAD and "options trust-ad" were first introduced in glibc by Florian Weimer. Florian Obser (florian@) contributed various improvements, fixed a bug and added automatic trust for name servers on localhost. ok florian@ phessler@
2021-11-22explain about the new defaults for PKGNAME-subMarc Espie
2021-11-22gc parts that reference "describe"Marc Espie
2021-11-21sort SEE ALSO;Jason McIntyre
2021-11-21Mention iicmux(4).Mark Kettenis
requested by & ok jmc@
2021-11-21iicmux(4)Mark Kettenis
2021-11-18Move example from "goo" to @tag.Antoine Jacoutot
2021-11-17explicitly talk a bit about "informal" specsMarc Espie
2021-11-16document GH_DISTFILE that was added to ports/infrastructure/mk/bsd.port.mkStuart Henderson
2021-11-16To debug IPsec and tdb refcounting it is useful to have "show tdb"Alexander Bluhm
and "show all tdbs" in ddb. tested by Hrvoje Popovski; OK mvs@
2021-11-13Use a proper PKGPATH in the WRKOBJDIR exampleKlemens Nanni
www/mozilla is a module, www/mozilla-firefox is an actual port. OK sthen
2021-11-11nwid -> joinKlemens Nanni
Missed in the previous commit to the installer and wifi driver manuals: --- Use ifconfig(8)'s "join" command by default Its adoption went quite well, so install "join" rather than the old "nwid" in new hostname.if(5) files and follow this trend in our wifi manuals. OK deraadt sthen --- Spotted/diff from From Raf Czlonka < rczlonka AT gmail DOT com>, thanks! Tweak the example sentence while here. Feedback jmc sthen
2021-11-11remove switch(4) entry in SEE ALSO;Jason McIntyre
2021-11-11Tweak rc_stop and rc_reload description by mentioning their correspondingAntoine Jacoutot
_signal variable. Fix a warning from 'mandoc -T lint' while here.
2021-11-11Regen after switch(4) removalClaudio Jeker
2021-11-11Unhook switch.4 and update bridge.4 since some switch(4) specific ioctlsClaudio Jeker
will be removed soon. OK sthen@ kn@ patrick@
2021-11-10Give sppp(4) its own RTP_PROPOSAL priorityBjorn Ketelaars
OK semarie@
2021-11-10sppp(4) - support PPP IPCP extensions for DNSBjorn Ketelaars
RFC 1877 extends the family of network control protocols for establishing and configuring the IPCP over PPP, defining the negotiation of primary and secondary DNS addresses. After negotiation, rtm_proposal() is used to send out DNS updates. Feedback from claudio@ and kn@. OK claudio@, kn@
2021-11-09Add gpiokeys(4) for arm64Klemens Nanni
This driver handles events triggered by GPIO keys such as lid status and power button. OK kettenis
2021-11-09add some Dv; from simon branchJason McIntyre
2021-11-09Clarify ksh(1) dependencyKlemens Nanni
OK aja
2021-11-08install.site.5 not .8Klemens Nanni
2021-11-08Rename/move site(8) into install.site(5)Klemens Nanni
These sets/scripts are not commands and there is nothing actually called "site". This is configuration, so use section five. Also rename to what actually exists. Discussed with deraadt schwarze jmc OK deraadt
2021-11-08Fix markupKlemens Nanni
2021-11-06Allow passing a different signal than SIGTERM in the default rc_stop()Antoine Jacoutot
function. This will allow to simplify some rc.d script that cook there own function to gracefully stop a process (e.g. web servers). There are other use cases as well. And do the same for rc_reload because it's cheap and can also simplify a handful of rc.d scripts. Behave like shutdown and if the process is still not down after daemon_timeout (configurable; default to 30s), then send a SIGKILL. While here, factorise pkill invocations into a _rc_sendsig() function that can potentially be used by rc.d scripts instead of cooking pkill lines; this will benefit from the configured routing table etc. tested & ok robert@
2021-11-06Add missing newline to fix markupKlemens Nanni
2021-11-06Add "install.site" and "upgrade.site" as additional manual namesKlemens Nanni
This makes "man upgrade.site" work, which is quite convenient for what is sort of a configuration/script file -- similar to boot.conf(8) which lives in boot.8 as additional Nm.
2021-11-06Add site(8), OpenBSD installation and upgrade customizationKlemens Nanni
This is practically https://www.openbsd.org/faq/faq4.html#site "Customizing the Install Process"++ with practical examples and references to/from relevant manuals. Prodding/first diff from Aaron Poffenberger <akp AT hypernote DOT com> "I didn't know about it and now I'm using it on all my systems." florian Feedback semarie afresh1 OK afresh1
2021-11-02igc(4)Patrick Wildt
2021-11-01fix Dt and SEE ALSO;Jason McIntyre
2021-11-01aplhidev(4), aplkbd(4) and aplms(4)Mark Kettenis
2021-11-01pf.conf.5: improve reply-to documentationLandry Breuil
reply-to uses addresses, not interfaces anymore since https://marc.info/?l=openbsd-cvs&m=161213948819452&w=2 make it clearer that reply-to allows for symmetric routing enforcement, eg replying via a specific gateway when having multiple paths. wording from sthen@, vastly improving my initial suggestion. ok jmc@ dlg@
2021-10-31Make it more visible that not only rc_reload() can be disabled.Antoine Jacoutot
2021-10-31aplspi(4)Mark Kettenis