]> git.ipfire.org Git - thirdparty/systemd.git/blame - udevd.8
[PATCH] update bk ignore list some more.
[thirdparty/systemd.git] / udevd.8
CommitLineData
7dae391f
KS
1.TH UDEVD 8 "February 2004" "" "Linux Administrator's Manual"
2.SH NAME
3udevd \- udev event serializer daemon
4.br
5udevsend \- sends the event to udevd
bef370d6
KS
6.SH SYNOPSIS
7.BI udevsend " hotplug-subsystem"
8.sp
9The environment must provide the following variables:
10.TP
11.B ACTION
12.IR add " or " remove
13signifies the connection or disconnection of a device.
14.TP
15.B DEVPATH
16The sysfs devpath of the device without the mountpoint but a leading slash.
17.TP
18.B SEQNUM
19The sequence number of the event provided by the kernel.
20If unset, the event bypasses the queue and will be executed immediately.
7dae391f
KS
21.SH "DESCRIPTION"
22.B udevd
23allows the serialization of
24.BR hotplug (8)
25events. The events generated by the kernel may arrive in random order
b86f56ff 26in userspace, that makes it neccessary to reorder them.
7dae391f
KS
27.br
28.B udevd
29takes care of the kernel supplied sequence number and arranges the events for
b86f56ff
KS
30execution in the correct order. Missing sequences delay the execution of the
31following events until a timeout of a maximum of 5 seconds is reached.
7dae391f
KS
32.br
33For each event a
34.BR udev (8)
35instance is executed in the background. All further events for the same device
b86f56ff
KS
36are delayed until the execution is finished. This way there will never be more
37than one instance running for a single device at the same time.
7dae391f
KS
38.br
39.B udevd
40receives the events from
41.B udevsend
42which is called by
ad63031e
KS
43.BR hotplug (8).
44If
45.B udevd
46isn't already running,
47.B udevsend
48will start it.
7dae391f 49.SH "SEE ALSO"
bef370d6
KS
50.BR udev (8),
51.BR udevinfo (8),
52.BR hotplug (8)
7dae391f
KS
53.SH AUTHORS
54.B udevd
55was developed primarily by Kay Sievers <kay.sievers@vrfy.org>, with much help
56from others.