source: chapter06/udev.xml@ 67129a2b

6.0
Last change on this file since 67129a2b was 0cb7f8b, checked in by Gerard Beekmans <gerard@…>, 20 years ago

Updated acknowledgements. Added notes regarding test suites not available for some packages. Edited the udev explanation page. Fixed some misc. typos

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4011 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 5.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-udev" role="wrap">
7<title>Udev-&udev-version;</title>
8<?dbhtml filename="udev.html"?>
9
10<indexterm zone="ch-system-udev"><primary sortas="a-Udev">Udev</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Udev package contains programs for dynamic creation of device nodes.</para>
14
15<segmentedlist>
16<segtitle>&buildtime;</segtitle>
17<segtitle>&diskspace;</segtitle>
18<seglistitem><seg>0.2 SBU</seg><seg>5.2 MB</seg></seglistitem>
19</segmentedlist>
20
21<segmentedlist>
22<segtitle>Udev installation depends on</segtitle>
23<seglistitem><seg>Coreutils, Make</seg></seglistitem>
24</segmentedlist>
25
26</sect2>
27
28<sect2 role="installation">
29<title>Installation of Udev</title>
30
31<para>Compile Udev:</para>
32
33<screen><userinput>make udevdir=/dev</userinput></screen>
34
35<variablelist>
36<varlistentry>
37<term><parameter>udevdir=/dev</parameter></term>
38<listitem><para>This tells <command>udev</command> in which directory
39devices nodes are to be created.</para></listitem>
40</varlistentry>
41</variablelist>
42
43<para>This package does not come with a test suite.</para>
44
45<para>Install the package:</para>
46
47<screen><userinput>make udevdir=/dev install</userinput></screen>
48
49<para>Udev's configuration is far from ideal by default, so we install our own
50configuration files here:</para>
51
52<screen><userinput>cp ../udev-config-2.permissions /etc/udev/permissions.d/00-lfs.permissions
53cp ../udev-config-1.rules /etc/udev/rules.d/00-lfs.rules</userinput></screen>
54
55</sect2>
56
57<sect2 id="contents-udev" role="content"><title>Contents of Udev</title>
58
59<segmentedlist>
60<segtitle>Installed programs</segtitle>
61<seglistitem><seg>udev, udevd, udevsend, udevstart, udevinfo, udevtest</seg></seglistitem>
62</segmentedlist>
63
64<variablelist><bridgehead renderas="sect3">Short descriptions</bridgehead>
65<?dbfo list-presentation="list"?>
66
67<varlistentry id="udev">
68<term><command>udev</command></term>
69<listitem>
70<para>is used to create device nodes in <filename
71class="directory">/dev</filename> or to rename network interfaces (not
72in LFS) in response to hotplug events.</para>
73<indexterm zone="ch-system-udev udev"><primary sortas="b-udev">udev</primary></indexterm>
74</listitem></varlistentry>
75
76<varlistentry id="udevd">
77<term><command>udevd</command></term>
78<listitem>
79<para>is a daemon that reorders hotplug events before submitting them to
80<command>udev</command>,
81thus avoiding various race conditions.</para>
82<indexterm zone="ch-system-udev udevd"><primary sortas="b-udevd">udevd</primary></indexterm>
83</listitem></varlistentry>
84
85<varlistentry id="udevsend">
86<term><command>udevsend</command></term>
87<listitem>
88<para>is used to deliver hotplug events to <command>udevd</command>.</para>
89<indexterm zone="ch-system-udev udevsend"><primary sortas="b-udevsend">udevsend</primary></indexterm>
90</listitem></varlistentry>
91
92<varlistentry id="udevstart">
93<term><command>udevstart</command></term>
94<listitem>
95<para>is used to create device nodes in <filename
96class="directory">/dev</filename> that correspond to drivers compiled directly
97into the kernel. It performs that task by simulating hotplug events presumably
98dropped by the kernel before invocation of this program (e.g. because the root
99filesystem has not been mounted) and submitting such synthetic hotplug events
100to <command>udev</command>.</para>
101<indexterm zone="ch-system-udev udevstart"><primary sortas="b-udevstart">udevstart</primary></indexterm>
102</listitem>
103</varlistentry>
104
105<varlistentry id="udevinfo">
106<term><command>udevinfo</command></term>
107<listitem>
108<para>allows users to query the <command>udev</command> database for
109information on any device currently present on the system. It also
110provides a way to query any device in the <systemitem
111class="filesystem">sysfs</systemitem> tree to help creating udev
112rules.</para>
113<indexterm zone="ch-system-udev udevinfo"><primary sortas="b-udevinfo">udevinfo</primary></indexterm>
114</listitem></varlistentry>
115
116<varlistentry id="udevtest">
117<term><command>udevtest</command></term>
118<listitem>
119<para>simulates a <command>udev</command> run for the given device,
120and prints out the name of the node the real <command>udev</command> would
121have created, or (not in LFS) the name of the renamed network interface.</para>
122<indexterm zone="ch-system-udev udevtest"><primary sortas="b-udevtest">udevtest</primary></indexterm>
123</listitem></varlistentry>
124
125<varlistentry id="etc-dev-d">
126<term><filename class="directory">/etc/dev.d</filename></term>
127<listitem>
128<para>directory contains user-written handlers for device
129creation hotplug events.</para>
130<indexterm zone="ch-system-udev etc-dev-d"><primary sortas="e-etc-dev-d">/etc/dev.d</primary></indexterm>
131</listitem></varlistentry>
132
133<varlistentry id="etc-udev">
134<term><filename class="directory">/etc/udev</filename></term>
135<listitem>
136<para>directory contains <command>udev</command> configuation files,
137device permissions and rules for device naming.</para>
138<indexterm zone="ch-system-udev etc-udev"><primary sortas="e-etc-udev">/etc/udev</primary></indexterm>
139</listitem></varlistentry>
140</variablelist>
141</sect2>
142
143</sect1>
144
Note: See TracBrowser for help on using the repository browser.