summaryrefslogtreecommitdiff
path: root/etc/etc.arm64
AgeCommit message (Collapse)Author
2023-06-22Add machdep.lidaction example. We support this on arm64 laptops now.Tobias Heider
From Jan Stary Ok patrick@
2023-04-21Delete incomplete and unreferenced 'miniroot' entries fromKenneth R Westerback
arm64 and macppc disktab.
2023-03-06Remove pointless ":ob#0:pb#0:[tb=swap:]" disktab lines.Kenneth R Westerback
ok miod@
2023-01-28syncTheo de Raadt
2023-01-14regenMark Kettenis
2023-01-14Create /dev/efi on amd64 and arm64.Mark Kettenis
ok yasuoka@
2022-11-10RegenKenneth R Westerback
2022-11-09RegenKenneth R Westerback
2022-11-09Remove xy/xd. SMD left with sparc.Kenneth R Westerback
ok kn@ deraadt@
2022-11-06regen after /dev/pf? cleanup (only /dev/pf exists)Klemens Nanni
2022-10-22lto is a memory hog. Bump pbuild's datasize-cur on arm64 to 8G as on amd64.Theo Buehler
ok phessler
2022-08-01Raise "staff" login class datasize-cur on arm64 to the value of amd64.Stefan Sperling
Values for other login classes defined in this file match amd64 already. ok millert, tb, deraadt
2022-02-21cap the daemon login class' datasize at either 1G or 4G depending onRobert Nagy
the architecture and set the bgpd class' datasize to either 16G or 1G ok sthen@ and discussed with many
2022-01-07regenJonathan Gray
2022-01-07stop creating old drm device nodesJonathan Gray
2022-01-06stop chowning old drm device nodesJonathan Gray
2022-01-04- add LDAPJason McIntyre
- capitalise RADIUS when referring to the protocol - remove tis from raf czlonka ok sthen ajacoutot
2021-11-12Bump maxproc-cur to 512 for the pbuild user.Antoine Jacoutot
This will prevent recurring failures in bulks ('cannot fork'). ok tb@ sthen@ deraadt@
2021-11-11Regen after switch(4) removalClaudio Jeker
2021-11-11/dev/switch[0-4] is no longer needed.Claudio Jeker
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-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-01-23syncTheo de Raadt
2021-01-23introduce ujoy(4), a restricted subset of uhid(4) for gamecontrollers.thfr
This includes ujoy_hid_is_collection() to work around limitations of hid_is_collection() until this can be combined without fallout. input, testing with 8bitdo controller, and ok brynet@ PS4 controller testing, fix for hid_is_collection, and ok mglocker@
2021-01-07add a xenodm login class and bump openfiles to 512 to avoid running outRobert Nagy
of file descriptors while running a busy desktop the xenodm login class expands the records from the daemon login class ok aja@, deraadt@, kettenis@, sthen@
2021-01-06Bump default datasize-max and datasize-cur since clang now seems toMark Kettenis
require more than 768M to build itself.
2020-07-06regen after kstat additionDavid Gwynne
2020-07-06wire up kstat(4).David Gwynne
it's only accessible to root:wheel. ok deraadt@
2020-05-17Change install images called *.fs to *.img. These are UFS filesystem images,Theo de Raadt
but additionally have a bootblock in the first 8K (since UFS does not use that space). There are some UEFI direct-from-internet bootloaders that require the name *.img. So this makes things more convenient for those, while keeping it consistant in all architectures. ok kettenis beck kn
2020-04-24regenAlexandre Ratchov
2020-04-24Bump audio devices count to 4Alexandre Ratchov
ok deraadt
2020-04-18regenAlexandre Ratchov
2020-03-13Run getty on all /dev/ttyC* apart from ttyC0, since it might conflictPatrick Wildt
with /dev/console. Feedback from and ok kettenis@
2020-03-12syncPatrick Wildt
2020-03-12Add /dev/drm[0-3].Patrick Wildt
ok deraadt@
2020-01-23regen after adding pppacDavid Gwynne
2020-01-23wire up pppac(4).David Gwynne
with help from claudio@
2020-01-21regenMartin Pieuchot
2020-01-21Add /dev/dtMartin Pieuchot
2019-12-22regenMark Kettenis
2019-12-22Wire up ipmi(4).Mark Kettenis
ok deraadt@
2019-12-17syncReyk Floeter
2019-12-17Add fido(4), a HID driver for FIDO/U2F security keysReyk Floeter
While FIDO/U2F keys were already supported by the generic uhid(4) driver, this driver adds the first step to tighten the security of FIDO/U2F access. Specifically, users don't need read/write access to all USB/HID devices anymore and the driver also improves integration with pledge(2) and unveil(2): It is pledge-friendly because it doesn't require any ioctls to discover the device and unveil-friendly because it uses a single /dev/fido/* directory for its device nodes. It also allows to support FIDO/U2F in firefox without further weakening the "sandbox" of the browser. Firefox does not have a proper privsep design and many operations, such as U2F access, are handled directly by the main process. This means that the browser's "fat" main process needs direct read/write access to all USB HID devices, at least on other operating systems. With fido(4) we can support security keys in Firefox under OpenBSD without such a compromise. With this change, libfido2 stops using the ioctl to query the device vendor/product and just assumes "OpenBSD" "fido(4)" instead. The ioctl is still supported but there was no benefit in obtaining the vendor product or name; it also allows to use libfido2 under pledge. With feedback from deraadt@ and many others OK kettenis@ djm@ and jmc@ for the manpage bits
2019-12-14syncTheo de Raadt
2019-11-05Add a default priority of 5 for user _pbuild, this should help keeping systemsolene
responsive during packages compilation, especially on slower machines. feedback welcome from people building ports discussed with deraadt@
2019-10-07sync arm64 pbuild resource limits with amd64; arm64 now builds some largeStuart Henderson
things and can easily exceed the previous 1.5GB limit. (obviously, as with amd64, machines with less physical RAM won't cope with building the largest ports). ok deraadt phessler millert kettenis
2019-09-21Increase datasize limit for ports building on arm64 in preparationKurt Miller
for enabling devel/jdk/11 there. okay phessler@
2019-09-15Add ttyC4 to lost of devices to change when logging in on ttyC0 (and inMark Kettenis
some cases also the serial console) such that X can use it as its VT when running without root privileges. ok jsg@, matthieu@