summaryrefslogtreecommitdiff
path: root/etc
AgeCommit message (Collapse)Author
2021-07-22Only perform the default-route-pause if there are interfaces with theTheo de Raadt
AUTOCONF flag set. This removes the delay for even more (strange) static configs. ok sthen
2021-07-22small tweak for default route checking, we don't care about the number ofStuart Henderson
routes, only if at least one exists, so can avoid the subshell and just use grep -q. ok deraadt
2021-07-22After netstart, dhcpleased, and resolved are running, spin up to 10Theo de Raadt
seconds waiting for a default route (v4 or v6) to exist, this increases the chance of DNS lookups working earlier. This is done before pf is configured, sorry we have good reasons. Static configurations are unaffected. dhclient previously did this kind of delay, and this is the lightest touch we can come up with which gives the same effect. While here, also start relinking earlier. ok benno florian sthen
2021-07-16switch to dhcpleased/resolvd in baseFlorian Obser
OK deraadt
2021-06-30grow ramdisk area due to increased firmware sizes..Theo de Raadt
ok jsg
2021-06-29build bsd.mpTheo de Raadt
2021-06-26syncJonathan Gray
2021-06-26add /dev/dri/card0 and /dev/dri/renderD128Jonathan Gray
ok deraadt@
2021-06-26add /dev/dri/Jonathan Gray
ok deraadt@
2021-06-20Don't try to install a default route with route(8) later on if we areFlorian Obser
using inet autoconf, like we do with "dhcp" and "inet6 autoconf". OK kn
2021-06-07Add HTTPS URL for LACNIC TAjob
OK deraadt@ claudio@
2021-05-25syncTheo de Raadt
2021-05-24create audio devices for armv7Peter Hessler
tested with an mp3 on a Tinkerboard OK sthen@ kettenis@
2021-05-19Please sir, I want some more (ramdisk miniroot space)Theo de Raadt
2021-05-17Regenerate moduli.Darren Tucker
2021-05-12The official service name of tcp/465 is "submissions"Jeremie Courreges-Anglas
Keep "smtps" as an alias. https://datatracker.ietf.org/doc/html/rfc8314#section-7.3 ok sthen@ florian@ kmos@
2021-05-12Drop swat (tcp/901)Jeremie Courreges-Anglas
The Samba Web Administration Tool has been dropped by the samba project and TCP port 901 is not registered at IANA. ok sthen@ florian@ kmos@
2021-05-05slight tidy-up of /etc/services:Stuart Henderson
- remove a few UDP entries for protocols that are TCP-only - drop some obsolete protocols - move smtps/465 to the standards section (rfc8314) - move the talk about IANA's "reserve for both UDP/TCP even when you only use one" policy from a comment in /etc/services to the manual, and talk about how an entry in /etc/services prevents the associated port from being used for dynamic ports (via net.inet.udp|tcp.baddynamic sysctl). ok phessler@ florian@
2021-05-01Retire OpenBSD/sgi.Visa Hankala
OK deraadt@
2021-04-28descend into riscv64 dirsJonathan Gray
ok deraadt@
2021-04-28create riscv64 man dirsJonathan Gray
ok deraadt@
2021-04-28remove old drm devicesJonathan Gray
2021-04-28SyncDale Rahn
2021-04-28riscv64 etc supportDale Rahn
copied from arm64 MAKEDEV.md contents are kinda partially there, needs more work.
2021-04-25Bump pbuild stacksize to 8M.mortimer
Addresses a stack exhaustion issue with llvm11 and a small number of ports. ok kettenis@
2021-04-17Embiggen arm64 ramdisk kernel and miniroot/install img files. ProvideStuart Henderson
U-Boot binaries that work on Raspberry Pi 3 and 4 (and possibly others) and firmware for Raspberry Pi 4. This allows the same installation method as used on Raspberry Pi 3 without separate UEFI firmware (although UEFI can still be used). Help from kettenis@ jsg@ deraadt@
2021-04-11Create a sparc64 install*.img file alsoTheo de Raadt
tested by kettenis
2021-04-09Fix release timeTheo Buehler
ok deraadt
2021-04-02syncTheo de Raadt
2021-04-02don't put ptys onto the ramdisk mediaTheo de Raadt
from miod
2021-03-27The ospf6d manpage states that the daemon laks support for multi arearemi
configurations. Fix the example config to only use one area instead of two. Issue brought up and OK danj@ claudio@ doesn't mind
2021-03-25mail(1) cares about whitespaceTheo de Raadt
2021-03-24Add mouse.tp.tapping example.Ulf Brosziewski
ok kn@
2021-03-13because the kernel has been replaced after last boot, run kvm_mkdbTheo de Raadt
before the first consumer of kvm_bsd.db
2021-03-11grow media a littleTheo de Raadt
2021-03-10Import regenerated moduli file.Darren Tucker
2021-03-09dhcpleased wants /var (but contains code to handle when it isn't there).Theo de Raadt
But in the nfs diskless case, we can do better by starting it a little later. This disrupts nfs diskless on dynamic addresses a little, if it ever actually worked with dhclient, but anyone doing that deserves the headache. ok florian
2021-03-04Update TAL files to offical versions that include a https:// URL for theClaudio Jeker
trust anchor. rpki-client will then use the https:// URL first and fall back to rsync if the https request failed. OK job@ tb@
2021-03-01resolvd and dhcpleased should not be enabled yetTheo de Raadt
2021-02-28install rc.d/resolvdTheo de Raadt
2021-02-27Add logger(1) support for daemons that are logging to stdout/stderr (mostly fromAntoine Jacoutot
the go ecosystem). Properly handle failing daemon startup now that we have pipefail. To take advantage of this new feature, just add foo_logger=facility to the daemon rc.d(8) script or in rc.conf.local(8) or use rcctl: rcctl set foo logger daemon.info tweak for checking flags in rcctl(8) from martijn@ "this looks pretty good" deraadt@ ok sthen@
2021-02-26Ship resolvd service, enable it by defaultkn
Starting right after unwind. OK deraadt
2021-02-26Create /var/db/dhcpleased for lease files.Florian Obser
OK deraadt@
2021-02-26rc(8) bits for dhcpleased(8).Florian Obser
OK deraadt
2021-02-22add 7.0 syspatch pubkeyRobert Nagy
2021-02-18add rpki-rtr port 323; ok jobTheo de Raadt
2021-02-12syncJonathan Gray
2021-02-12create /dev/ drm nodes with the same names as linuxJonathan Gray
This was proposed by Emil Velikov to simplify libdrm and will remove the need for some patches in ports. /dev/drm0 -> /dev/dri/card0 /dev/drmR128 -> /dev/dri/renderD128 The previous names will remain for a period of time and will later be removed. Major and minor numbers remain the same. libdrm will not be changed to use the new names until known privsep and sandbox use has been updated to allow the new names. ok deraadt@
2021-02-12do not need 66 keys anymoreTheo de Raadt
2021-02-09rc: ensure that vfs.mounts.nfs check works without NFSChristian Weisgerber
If NFS isn't compiled into the kernel, sysctl -n vfs.mounts.nfs will produce no numerical output. Make sure that we always have a valid arithmetic expression. Reported by and ok patrick@