source: chapter08/udev.xml@ 18d1f6f

multilib
Last change on this file since 18d1f6f was aebd449, checked in by Thomas Trepl <thomas@…>, 8 months ago

Automatic merge of trunk into multilib

  • Property mode set to 100644
File size: 12.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-udev" role="wrap" revision="sysv">
9 <?dbhtml filename="udev.html"?>
10
11 <sect1info condition="script">
12 <productname>udev</productname>
13 <productnumber>&systemd-version;</productnumber>
14 <address>&systemd-url;</address>
15 </sect1info>
16
17 <title>Udev from Systemd-&systemd-version;</title>
18
19 <indexterm zone="ch-system-udev">
20 <primary sortas="a-Udev">Udev</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Udev package contains programs for dynamic creation of device
27 nodes.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&udev-fin-sbu;</seg>
35 <seg>&udev-fin-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38 </sect2>
39
40 <sect2 role="installation">
41 <title>Installation of Udev</title>
42
43 <para>Udev is part of the systemd-&systemd-version; package. Use
44 the systemd-&systemd-version;.tar.xz file as the source tarball.</para>
45
46 <para>Remove two unneeded groups,
47 <systemitem class="groupname">render</systemitem> and
48 <systemitem class="groupname">sgx</systemitem>, from the default udev
49 rules:</para>
50
51 <screen><userinput remap="pre">sed -i -e 's/GROUP="render"/GROUP="video"/' \
52 -e 's/GROUP="sgx", //' rules.d/50-udev-default.rules.in</userinput></screen>
53
54 <para>Remove one udev rule requiring a full Systemd installation:</para>
55
56 <screen><userinput remap="pre">sed '/systemd-sysctl/s/^/#/' -i rules.d/99-systemd.rules.in</userinput></screen>
57
58 <para>Prepare Udev for compilation:</para>
59
60<screen><userinput remap="configure">mkdir -p build
61cd build
62
63meson setup \
64 --prefix=/usr \
65 --buildtype=release \
66 -Dmode=release \
67 -Ddev-kvm-mode=0660 \
68 -Dlink-udev-shared=false \
69 -Dlogind=false \
70 -Dvconsole=false \
71 ..</userinput></screen>
72
73 <variablelist>
74 <title>The meaning of the meson options:</title>
75
76 <varlistentry>
77 <term><parameter>--buildtype=release</parameter></term>
78 <listitem>
79 <para>This switch overrides the default buildtype
80 (<quote>debug</quote>), which produces unoptimized
81 binaries.</para>
82 </listitem>
83 </varlistentry>
84
85 <varlistentry>
86 <term><parameter>-Dmode=release</parameter></term>
87 <listitem>
88 <para>Disable some features considered experimental by upstream.
89 </para>
90 </listitem>
91 </varlistentry>
92
93 <varlistentry>
94 <term><parameter>-Ddev-kvm-mode=0660</parameter></term>
95 <listitem>
96 <para>The default udev rule would allow all users to access
97 <filename class='devicefile'>/dev/kvm</filename>. The editors
98 consider it dangerous. This option overrides it.</para>
99 </listitem>
100 </varlistentry>
101
102 <varlistentry>
103 <term><parameter>-Dlink-udev-shared=false</parameter></term>
104 <listitem>
105 <para>This option prevents udev from linking to the internal
106 systemd shared library,
107 <systemitem class='library'>libsystemd-shared</systemitem>.
108 This library is designed to be shared by many Systemd components
109 and it's too overkill for a udev-only installation.</para>
110 </listitem>
111 </varlistentry>
112
113 <varlistentry>
114 <term><parameter>-Dlogind=false -Dvconsole=false</parameter></term>
115 <listitem>
116 <para>These options prevent the generation of several udev rule
117 files belonging to the other Systemd components that we won't
118 install.</para>
119 </listitem>
120 </varlistentry>
121 </variablelist>
122
123 <para>Only build the components needed for udev:</para>
124
125 <screen><userinput remap="make">ninja udevadm systemd-hwdb \
126 $(ninja -n | grep -Eo '(src/(lib)?udev|rules.d|hwdb.d)/[^ ]*') \
127 $(realpath libudev.so --relative-to .)</userinput></screen>
128
129 <para>Install the package:</para>
130
131 <screen><userinput remap="install">install -vm755 -d {/usr/lib,/etc}/udev/{hwdb,rules}.d
132install -vm755 -d /usr/{lib,share}/pkgconfig
133install -vm755 udevadm /usr/bin/
134install -vm755 systemd-hwdb /usr/bin/udev-hwdb
135ln -svfn ../bin/udevadm /usr/sbin/udevd
136cp -av libudev.so{,*[0-9]} /usr/lib/
137install -vm644 ../src/libudev/libudev.h /usr/include/
138install -vm644 src/libudev/*.pc /usr/lib/pkgconfig/
139install -vm644 src/udev/*.pc /usr/share/pkgconfig/
140install -vm644 ../src/udev/udev.conf /etc/udev/
141install -vm644 rules.d/* ../rules.d/README /usr/lib/udev/rules.d/
142install -vm644 $(find ../rules.d/*.rules \
143 -not -name '*power-switch*') /usr/lib/udev/rules.d/
144install -vm644 hwdb.d/* ../hwdb.d/{*.hwdb,README} /usr/lib/udev/hwdb.d/
145install -vm755 $(find src/udev \
146 -type f -not -name '*.*') /usr/lib/udev</userinput></screen>
147
148 <para>Install some custom rules and support files useful in an LFS
149 environment:</para>
150
151<screen><userinput remap="install">tar -xvf ../../&udev-lfs-version;.tar.xz
152make -f &udev-lfs-version;/Makefile.lfs install</userinput></screen>
153
154 <para>Install the man pages:</para>
155
156 <!-- Please make sure systemd man pages tarball has a common leading
157 component in the path. -->
158<screen><userinput remap="install">tar -xf ../../systemd-man-pages-&systemd-man-version;.tar.xz \
159 --no-same-owner --strip-components=1 \
160 -C /usr/share/man --wildcards '*/udev*' '*/libudev*' \
161 '*/systemd-'{hwdb,udevd.service}.8
162sed 's/systemd\(\\\?-\)/udev\1/' /usr/share/man/man8/systemd-hwdb.8 \
163 > /usr/share/man/man8/udev-hwdb.8
164sed 's|lib.*udevd|sbin/udevd|' \
165 /usr/share/man/man8/systemd-udevd.service.8 \
166 > /usr/share/man/man8/udevd.8
167rm /usr/share/man/man8/systemd-*.8</userinput></screen>
168
169 </sect2>
170
171 <!-- - - - - - - - - - -->
172 <!-- Multilib - 32bit -->
173 <!-- - - - - - - - - - -->
174 <sect2 arch="ml_32,ml_all" role="installation">
175 <title>Installation of Udev - 32bit</title>
176
177 <para>Clean previous build (while still in the build directory):</para>
178
179<screen><userinput remap="pre">rm -rf *</userinput></screen>
180
181 <para>Prepare Udev for compilation:</para>
182
183<screen><userinput remap="configure">PKG_CONFIG_PATH="/usr/lib32/pkgconfig" \
184CC="gcc -m32 -march=i686" \
185CXX="g++ -m32 -march=i686" \
186LANG=en_US.UTF-8 \
187meson setup \
188 --prefix=/usr \
189 --buildtype=release \
190 -Dmode=release \
191 -Ddev-kvm-mode=0660 \
192 -Dlink-udev-shared=false \
193 ..</userinput></screen>
194
195 <para>Compile the package:</para>
196
197<screen><userinput remap="make">ninja \
198 $(grep -o -E "^build (src/libudev|src/udev)[^:]*" \
199 build.ninja | awk '{ print $2 }') \
200 $(realpath libudev.so --relative-to .)</userinput></screen>
201
202 <para>Install the package:</para>
203
204<screen><userinput remap="install">mkdir -pv /usr/lib32/pkgconfig &amp;&amp;
205cp -av libudev.so{,*[0-9]} /usr/lib32/ &amp;&amp;
206sed -e "s;/usr/lib;&amp;32;g" src/libudev/libudev.pc > /usr/lib32/pkgconfig/libudev.pc</userinput></screen>
207
208 </sect2><!-- m32 -->
209
210 <!-- - - - - - - - - - -->
211 <!-- Multilib - x32bit -->
212 <!-- - - - - - - - - - -->
213 <sect2 arch="ml_x32,ml_all" role="installation">
214 <title>Installation of Udev - x32bit</title>
215 <para>Clean previous build (while still in the build directory):</para>
216
217<screen><userinput remap="pre">rm -rf *</userinput></screen>
218
219 <para>Prepare Udev for compilation:</para>
220
221<screen><userinput remap="configure">PKG_CONFIG_PATH="/usr/libx32/pkgconfig" \
222CC="gcc -mx32" \
223CXX="g++ -mx32" \
224CFLAGS+=" -Wno-error=shift-overflow" \
225CXXFLAGS+=" -Wno-error=shift-overflow" \
226LANG=en_US.UTF-8 \
227meson setup \
228 --prefix=/usr \
229 --buildtype=release \
230 -Dmode=release \
231 -Ddev-kvm-mode=0660 \
232 -Dlink-udev-shared=false \
233 ..</userinput></screen>
234
235 <para>Compile the package:</para>
236
237<screen><userinput remap="make">ninja \
238 $(grep -o -E "^build (src/libudev|src/udev)[^:]*" \
239 build.ninja | awk '{ print $2 }') \
240 $(realpath libudev.so --relative-to .)</userinput></screen>
241
242 <para>Install the package:</para>
243
244<screen><userinput remap="install">mkdir -pv /usr/libx32/pkgconfig &amp;&amp;
245cp -av libudev.so{,*[0-9]} /usr/libx32/ &amp;&amp;
246sed -e "s;/usr/lib;&amp;x32;g" src/libudev/libudev.pc > /usr/libx32/pkgconfig/libudev.pc</userinput></screen>
247
248 </sect2><!-- mx32 -->
249
250 <sect2 id="conf-udev" role="configuration">
251 <title>Configuring Udev</title>
252
253 <indexterm zone="conf-udev">
254 <primary sortas="a-Udev">Udev</primary>
255 <secondary>configuring</secondary>
256 </indexterm>
257
258 <indexterm zone="conf-udev">
259 <primary sortas="e-/etc/udev/hwdb.bin">/etc/udev/hwdb.bin</primary>
260 </indexterm>
261
262 <para>Information about hardware devices is maintained in the
263 <filename class="directory">/etc/udev/hwdb.d</filename> and
264 <filename class="directory">/usr/lib/udev/hwdb.d</filename> directories.
265 <application>Udev</application> needs that information to be compiled
266 into a binary database <filename>/etc/udev/hwdb.bin</filename>. Create the
267 initial database:</para>
268
269<screen><userinput>udev-hwdb update</userinput></screen>
270
271 <para>This command needs to be run each time the hardware information is
272 updated.</para>
273
274 </sect2>
275
276 <sect2 id="contents-udev" role="content">
277 <title>Contents of Udev</title>
278
279 <segmentedlist>
280 <segtitle>Installed programs</segtitle>
281 <segtitle>Installed libraries</segtitle>
282 <segtitle>Installed directories</segtitle>
283
284 <seglistitem>
285 <seg>udevadm, udevd (symlink to udevadm), and udev-hwdb</seg>
286
287 <seg>libudev.so</seg>
288
289 <seg>/etc/udev and /usr/lib/udev</seg>
290 </seglistitem>
291 </segmentedlist>
292
293 <variablelist>
294 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
295 <?dbfo list-presentation="list"?>
296 <?dbhtml list-presentation="table"?>
297 <varlistentry id="udevadm" revision="sysv">
298 <term><command>udevadm</command></term>
299 <listitem>
300 <para>Generic udev administration tool: controls the udevd daemon,
301 provides info from the Udev database, monitors uevents, waits for
302 uevents to finish, tests Udev configuration, and triggers uevents
303 for a given device</para>
304 <indexterm zone="ch-system-udev udevadm">
305 <primary sortas="b-udevadm">udevadm</primary>
306 </indexterm>
307 </listitem>
308 </varlistentry>
309
310 <varlistentry id="udevd">
311 <term><command>udevd</command></term>
312 <listitem>
313 <para>A daemon that listens for uevents on the netlink socket,
314 creates devices and runs the configured external programs in
315 response to these uevents</para>
316 <indexterm zone="ch-system-udev udevd">
317 <primary sortas="b-udevd">udevd</primary>
318 </indexterm>
319 </listitem>
320 </varlistentry>
321
322 <varlistentry id="udev-hwdb">
323 <term><command>udev-hwdb</command></term>
324 <listitem>
325 <para>Updates or queries the hardware database.</para>
326 <indexterm zone="ch-system-udev udev-hwdb">
327 <primary sortas="b-udev-hwdb">udev-hwdb</primary>
328 </indexterm>
329 </listitem>
330 </varlistentry>
331
332 <varlistentry id="libudev">
333 <term><filename class="libraryfile">libudev</filename></term>
334 <listitem>
335 <para>A library interface to udev device information</para>
336 <indexterm zone="ch-system-udev libudev">
337 <primary sortas="c-libudev">libudev</primary>
338 </indexterm>
339 </listitem>
340 </varlistentry>
341
342 <varlistentry id="etc-udev">
343 <term><filename class="directory">/etc/udev</filename></term>
344 <listitem>
345 <para>Contains Udev configuration files,
346 device permissions, and rules for device naming</para>
347 <indexterm zone="ch-system-udev etc-udev">
348 <primary sortas="e-/etc/udev">/etc/udev</primary>
349 </indexterm>
350 </listitem>
351 </varlistentry>
352
353 </variablelist>
354
355 </sect2>
356
357</sect1>
Note: See TracBrowser for help on using the repository browser.