How to support udev in a kernel module?
Posted
by Basilevs
on Stack Overflow
See other posts from Stack Overflow
or by Basilevs
Published on 2010-05-05T08:53:10Z
Indexed on
2010/06/07
7:22 UTC
Read the original article
Hit count: 214
linux-kernel
|udev
I'm porting a linux kernel module. It used to create a device file for itself (using dirty hacks with syscalls from kernelspace), but now I want to do this in udev. Where can I find documentation on supporting udev in in kernel module?
Note that module itself is not a device driver. It serves as a multiplexor for a set of drivers. Therefor default ways of registering devices (i.e. pci ones) are not suitable for my task.
© Stack Overflow or respective owner