mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-01-22 15:10:20 +07:00
[PATCH] udev - udevd/udevsend man page
Here is the missing man page for udevd/udevsend.
This commit is contained in:
parent
595251156b
commit
7dae391fd6
2
Makefile
2
Makefile
@ -361,6 +361,8 @@ install: install-config install-dbus-policy all
|
|||||||
fi
|
fi
|
||||||
$(INSTALL_DATA) -D udev.8 $(DESTDIR)$(mandir)/man8/udev.8
|
$(INSTALL_DATA) -D udev.8 $(DESTDIR)$(mandir)/man8/udev.8
|
||||||
$(INSTALL_DATA) -D udevinfo.8 $(DESTDIR)$(mandir)/man8/udevinfo.8
|
$(INSTALL_DATA) -D udevinfo.8 $(DESTDIR)$(mandir)/man8/udevinfo.8
|
||||||
|
$(INSTALL_DATA) -D udevd.8 $(DESTDIR)$(mandir)/man8/udevd.8
|
||||||
|
- ln -f -s ./udevd.8 $(DESTDIR)$(mandir)/man8/udevsend.8
|
||||||
- rm -f $(DESTDIR)$(hotplugdir)/$(ROOT).hotplug
|
- rm -f $(DESTDIR)$(hotplugdir)/$(ROOT).hotplug
|
||||||
- rm -f $(udevdir)/.udev.tdb
|
- rm -f $(udevdir)/.udev.tdb
|
||||||
- ln -f -s $(sbindir)/$(SENDER) $(DESTDIR)$(hotplugdir)/$(ROOT).hotplug
|
- ln -f -s $(sbindir)/$(SENDER) $(DESTDIR)$(hotplugdir)/$(ROOT).hotplug
|
||||||
|
36
udevd.8
Normal file
36
udevd.8
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
.TH UDEVD 8 "February 2004" "" "Linux Administrator's Manual"
|
||||||
|
.SH NAME
|
||||||
|
udevd \- udev event serializer daemon
|
||||||
|
.br
|
||||||
|
udevsend \- sends the event to udevd
|
||||||
|
.SH "DESCRIPTION"
|
||||||
|
.B udevd
|
||||||
|
allows the serialization of
|
||||||
|
.BR hotplug (8)
|
||||||
|
events. The events generated by the kernel may arrive in random order
|
||||||
|
in userspace, that makes it neccessary to reorder it.
|
||||||
|
.br
|
||||||
|
.B udevd
|
||||||
|
takes care of the kernel supplied sequence number and arranges the events for
|
||||||
|
execution in the correct order. Missing sequences are delaying the
|
||||||
|
execution of the following events until a timeout of a maximum of 5 seconds
|
||||||
|
is reached.
|
||||||
|
.br
|
||||||
|
For each event a
|
||||||
|
.BR udev (8)
|
||||||
|
instance is executed in the background. All further events for the same device
|
||||||
|
are delayed until the execution is finished. This way it will never run more
|
||||||
|
than one instance for a single device.
|
||||||
|
.br
|
||||||
|
.B udevd
|
||||||
|
receives the events from
|
||||||
|
.B udevsend
|
||||||
|
which is called by
|
||||||
|
.BR hotplug (8)
|
||||||
|
|
||||||
|
.SH "SEE ALSO"
|
||||||
|
.BR udev (8)
|
||||||
|
.SH AUTHORS
|
||||||
|
.B udevd
|
||||||
|
was developed primarily by Kay Sievers <kay.sievers@vrfy.org>, with much help
|
||||||
|
from others.
|
@ -1,4 +1,4 @@
|
|||||||
.TH UDEVINFO 8 "October 2003" "" "Linux Administrator's Manual"
|
.TH UDEVINFO 8 "January 2004" "" "Linux Administrator's Manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
udevinfo \- retrieve information from udev
|
udevinfo \- retrieve information from udev
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
Loading…
Reference in New Issue
Block a user