]> git.ipfire.org Git - thirdparty/systemd.git/blame - udevd.8
[PATCH] remove limit of the number of args passed to PROGRAM
[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
26in userspace, that makes it neccessary to reorder it.
27.br
28.B udevd
29takes care of the kernel supplied sequence number and arranges the events for
30execution in the correct order. Missing sequences are delaying the
31execution of the following events until a timeout of a maximum of 5 seconds
32is reached.
33.br
34For each event a
35.BR udev (8)
36instance is executed in the background. All further events for the same device
37are delayed until the execution is finished. This way it will never run more
ad63031e 38than one instance for a single device at the same time.
7dae391f
KS
39.br
40.B udevd
41receives the events from
42.B udevsend
43which is called by
ad63031e
KS
44.BR hotplug (8).
45If
46.B udevd
47isn't already running,
48.B udevsend
49will start it.
7dae391f 50.SH "SEE ALSO"
bef370d6
KS
51.BR udev (8),
52.BR udevinfo (8),
53.BR hotplug (8)
7dae391f
KS
54.SH AUTHORS
55.B udevd
56was developed primarily by Kay Sievers <kay.sievers@vrfy.org>, with much help
57from others.