OpenBSD CVS

CVS log for src/etc/etc.arm64/MAKEDEV.md


[BACK] Up to [local] / src / etc / etc.arm64

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.16 / (download) - annotate - [select for diffs], Sat Jan 14 12:15:12 2023 UTC (16 months, 3 weeks ago) by kettenis
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, HEAD
Changes since 1.15: +3 -1 lines
Diff to previous 1.15 (colored)

Create /dev/efi on amd64 and arm64.

ok yasuoka@

Revision 1.15 / (download) - annotate - [select for diffs], Wed Nov 9 19:35:23 2022 UTC (19 months ago) by krw
Branch: MAIN
Changes since 1.14: +1 -2 lines
Diff to previous 1.14 (colored)

Remove xy/xd. SMD left with sparc.

ok kn@ deraadt@

Revision 1.14 / (download) - annotate - [select for diffs], Fri Jan 7 01:13:15 2022 UTC (2 years, 5 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.13: +1 -3 lines
Diff to previous 1.13 (colored)

stop creating old drm device nodes

Revision 1.13 / (download) - annotate - [select for diffs], Thu Nov 11 09:47:32 2021 UTC (2 years, 7 months ago) by claudio
Branch: MAIN
Changes since 1.12: +1 -3 lines
Diff to previous 1.12 (colored)

/dev/switch[0-4] is no longer needed.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Feb 12 10:26:34 2021 UTC (3 years, 3 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9
Changes since 1.11: +3 -1 lines
Diff to previous 1.11 (colored)

create /dev/ drm nodes with the same names as linux

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@

Revision 1.11 / (download) - annotate - [select for diffs], Sat Jan 23 05:08:33 2021 UTC (3 years, 4 months ago) by thfr
Branch: MAIN
Changes since 1.10: +2 -1 lines
Diff to previous 1.10 (colored)

introduce ujoy(4), a restricted subset of uhid(4) for gamecontrollers.
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@

Revision 1.10 / (download) - annotate - [select for diffs], Mon Jul 6 06:11:26 2020 UTC (3 years, 11 months ago) by dlg
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8
Changes since 1.9: +2 -1 lines
Diff to previous 1.9 (colored)

wire up kstat(4).

it's only accessible to root:wheel.

ok deraadt@

Revision 1.9 / (download) - annotate - [select for diffs], Fri Apr 24 20:09:04 2020 UTC (4 years, 1 month ago) by ratchov
Branch: MAIN
CVS Tags: OPENBSD_6_7_BASE, OPENBSD_6_7
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored)

Bump audio devices count to 4

ok deraadt

Revision 1.8 / (download) - annotate - [select for diffs], Thu Mar 12 16:38:58 2020 UTC (4 years, 3 months ago) by patrick
Branch: MAIN
Changes since 1.7: +2 -1 lines
Diff to previous 1.7 (colored)

Add /dev/drm[0-3].

ok deraadt@

Revision 1.7 / (download) - annotate - [select for diffs], Thu Jan 23 02:47:28 2020 UTC (4 years, 4 months ago) by dlg
Branch: MAIN
Changes since 1.6: +2 -1 lines
Diff to previous 1.6 (colored)

wire up pppac(4).

with help from claudio@

Revision 1.6 / (download) - annotate - [select for diffs], Tue Jan 21 16:20:43 2020 UTC (4 years, 4 months ago) by mpi
Branch: MAIN
Changes since 1.5: +2 -1 lines
Diff to previous 1.5 (colored)

Add /dev/dt

Revision 1.5 / (download) - annotate - [select for diffs], Sun Dec 22 18:18:02 2019 UTC (4 years, 5 months ago) by kettenis
Branch: MAIN
Changes since 1.4: +3 -1 lines
Diff to previous 1.4 (colored)

Wire up ipmi(4).

ok deraadt@

Revision 1.4 / (download) - annotate - [select for diffs], Tue Dec 17 13:08:55 2019 UTC (4 years, 5 months ago) by reyk
Branch: MAIN
Changes since 1.3: +2 -1 lines
Diff to previous 1.3 (colored)

Add fido(4), a HID driver for FIDO/U2F security keys

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

Revision 1.3 / (download) - annotate - [select for diffs], Mon Aug 20 16:07:39 2018 UTC (5 years, 9 months ago) by kettenis
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.2: +2 -1 lines
Diff to previous 1.2 (colored)

Add /dev/drm[0-3].

ok deraadt@, jsg@, mpi@

Revision 1.2 / (download) - annotate - [select for diffs], Mon Jan 23 12:43:48 2017 UTC (7 years, 4 months ago) by kettenis
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored)

Add /dev/openprom.

Revision 1.1 / (download) - annotate - [select for diffs], Wed Jan 11 17:05:29 2017 UTC (7 years, 5 months ago) by patrick
Branch: MAIN

Add support for OpenBSD/arm64.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.