On Sun, May 05, 2024 at 09:10:36PM +0200, Taryel Hlontsi wrote:
> Then I had to make a device node:
> 
> mknod /dev/vio9p0 c 356 0
> 
> where 356 is a major number of the device I found in
> /usr/src/sys/conf/majors

The official way is something like:

        cd /dev && sh MAKEDEV vio9p0

(so you don't have to go digging for the number, and sometimes devices
come in groups like tty* and dty*, MAKEDEV will handle that).

Martin

Reply via email to