History log of /openbsd/etc/etc.sparc64/MAKEDEV.md (Results 1 – 25 of 101)
Revision Date Author Comments
# 86ac43f9 09-Nov-2022 krw <krw@openbsd.org>

Remove xy/xd. SMD left with sparc.

ok kn@ deraadt@


# 81985715 06-Oct-2022 kn <kn@openbsd.org>

crank vdsp(4) to 24

With eight domains and two or more disks per domain it is easy to exceed the
current number of 16 virtual disks.

I pass at least one miniroot and one root/data disk to every gue

crank vdsp(4) to 24

With eight domains and two or more disks per domain it is easy to exceed the
current number of 16 virtual disks.

I pass at least one miniroot and one root/data disk to every guest, one
domain has additional disk for softraid testing, making >16 disks already.

OK kettenis

show more ...


# ab2206ec 07-Jan-2022 jsg <jsg@openbsd.org>

stop creating old drm device nodes


# 31ee681f 11-Nov-2021 claudio <claudio@openbsd.org>

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


# 3856efe6 12-Feb-2021 jsg <jsg@openbsd.org>

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

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@

show more ...


# 1d44892e 23-Jan-2021 thfr <thfr@openbsd.org>

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 fall

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@

show more ...


# b4c43e69 22-Jul-2020 deraadt <deraadt@openbsd.org>

create /dev nodes for sparc64 and powerpc console, so that dev_mkdb
will find them, and devname() in various programs won't return "??"
ok kettenis


# 963d6015 06-Jul-2020 dlg <dlg@openbsd.org>

wire up kstat(4).

it's only accessible to root:wheel.

ok deraadt@


# cd2d05bf 25-May-2020 kmos <kmos@openbsd.org>

Increase the default number of ldom and ttyV devices for sparc64 from
eight to sixteen. It's quite easy to be able to create that many LDOMs on
the newer machines.

Help making the change in the righ

Increase the default number of ldom and ttyV devices for sparc64 from
eight to sixteen. It's quite easy to be able to create that many LDOMs on
the newer machines.

Help making the change in the right place from Miod and otto@

ok kn@ "looks fine" deraadt@

show more ...


# 66992aee 24-Apr-2020 ratchov <ratchov@openbsd.org>

Bump audio devices count to 4

ok deraadt


# 242e115f 23-Jan-2020 dlg <dlg@openbsd.org>

wire up pppac(4).

with help from claudio@


# 941a6d3e 21-Jan-2020 mpi <mpi@openbsd.org>

Add /dev/dt


# 1ba9f8e2 17-Dec-2019 reyk <reyk@openbsd.org>

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 acc

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

show more ...


# 074a7cfd 20-Oct-2019 kettenis <kettenis@openbsd.org>

Add /dev/pri.


# 08b45550 11-Sep-2016 deraadt <deraadt@openbsd.org>

cua/tty nodes only need group dialer, the initial uid does not
matter much -- and "uucp" is just stupid in 2016.
ok rpe


# 03b471d5 04-Sep-2016 naddy <naddy@openbsd.org>

Remove the tape block device nodes.
While here, also remove two forgotten descriptions for long obsolete
devices.


# 561201c3 02-Sep-2016 goda <goda@openbsd.org>

Add switch(4) cdev entry

ok deraadt@ yasuoka@ reyk@


# 881ff39b 28-Apr-2016 natano <natano@openbsd.org>

Replace /dev/bpf[0-9] with /dev/bpf and /dev/bpf0. The /dev/bpf node is
unused for now, but I plan to convert all programs in base to use it in
a future diff. /dev/bpf0 is for compatibility with exis

Replace /dev/bpf[0-9] with /dev/bpf and /dev/bpf0. The /dev/bpf node is
unused for now, but I plan to convert all programs in base to use it in
a future diff. /dev/bpf0 is for compatibility with existing binaries
and is to be removed after a transition period.

ok rpe krw, for the installer part
"Let's see it hit the tree." deraadt

show more ...


# c2ee575b 25-Apr-2016 tedu <tedu@openbsd.org>

burn down the systrace


# 5550f01d 23-Oct-2015 claudio <claudio@openbsd.org>

MAKEDEV bits for tap(4)
OK dlg@ mpi@


# 31b4e477 11-Mar-2015 deraadt <deraadt@openbsd.org>

openprom, just like eeprom; ok miod


# ba86212c 11-Dec-2014 tedu <tedu@openbsd.org>

remove urio


# dc6d32db 09-Oct-2014 tedu <tedu@openbsd.org>

delete all the cry devices too. missed by mikeb previously.


# a5c7105c 09-Oct-2014 tedu <tedu@openbsd.org>

remove lkm


# e291e427 11-Jul-2014 tedu <tedu@openbsd.org>

no bthub


12345