source: BOOK/boot/common/util-linux.xml @ fd28be83

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since fd28be83 was 0220731, checked in by Jim Gifford <clfs@…>, 18 years ago

r3559@server (orig r1624): chris | 2006-05-17 10:47:43 -0700
More text updates

  • Property mode set to 100644
File size: 4.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-boot-util-linux" role="wrap">
9  <?dbhtml filename="util-linux.html"?>
10
11  <title>Util-linux-&util-linux-version;</title>
12
13  <indexterm zone="ch-boot-util-linux">
14    <primary sortas="a-Util-linux">Util-linux</primary>
15    <secondary>boot</secondary>
16  </indexterm>
17
18  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
19  href="../../final-system/common/util-linux.xml"
20  xpointer="xpointer(//*[@role='package'])"/>
21
22  <sect2 role="installation">
23    <title>Installation of Util-linux</title>
24
25    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
26    href="../../final-system/common/util-linux.xml"
27    xpointer="xpointer(//*[@os='p1'])"/>
28
29    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
30    href="../../final-system/common/util-linux.xml"
31    xpointer="xpointer(//*[@os='p2'])"/>
32
33    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
34    href="../../final-system/common/util-linux.xml"
35    xpointer="xpointer(//*[@os='p3'])"/>
36
37    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
38    href="../../final-system/common/util-linux.xml"
39    xpointer="xpointer(//*[@os='p4'])"/>
40
41    <para os="ba">Util-linux does not use the freshly installed headers and
42    libraries from the <filename class="directory">/tools</filename>
43    directory by default. This is fixed by altering the
44    <command>configure</command> script:</para>
45
46<screen os="bb"><userinput>cp -v configure{,.orig}
47sed -e 's@/usr/include@/tools/include@g' configure.orig > configure</userinput></screen>
48
49    <para os="bc">The Util-linux installation uses <option>-o root</option>.
50    The following <command>sed</command> removes that since we don't have
51    users setup yet:</para>
52
53<screen os="bd"><userinput>cp -v MCONFIG{,.orig}
54sed -e 's|-o root||' MCONFIG.orig > MCONFIG</userinput></screen>
55
56    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
57    href="../../final-system/common/util-linux.xml"
58    xpointer="xpointer(//*[@os='a'])"/>
59
60<screen os="be"><userinput>./configure</userinput></screen>
61
62    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
63    href="../../final-system/common/util-linux.xml"
64    xpointer="xpointer(//*[@os='c'])"/>
65
66<screen os="bf"><userinput>make HAVE_KILL=yes HAVE_SLN=yes \
67HAVE_SHADOW=no CPUOPT="" ARCH="" \
68CPU=""</userinput></screen>
69
70    <variablelist os="bg">
71      <title>The meaning of the make parameters:</title>
72
73      <varlistentry>
74        <term><parameter>HAVE_KILL=yes</parameter></term>
75        <listitem>
76          <para>This prevents the <command>kill</command> program
77          from being built.</para>
78        </listitem>
79      </varlistentry>
80
81      <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
82      href="../../final-system/common/util-linux.xml"
83      xpointer="xpointer(//*[@os='e2'])"/>
84
85      <varlistentry>
86        <term><parameter>HAVE_SHADOW=no</parameter></term>
87        <listitem>
88          <para>This disables linking to shadow .</para>
89        </listitem>
90      </varlistentry>
91
92      <varlistentry>
93        <term><parameter>CPUOPT=""</parameter></term>
94        <listitem>
95          <para>This disables any compiler optimizations by CPU type.</para>
96        </listitem>
97      </varlistentry>
98
99      <varlistentry>
100        <term><parameter>ARCH=""</parameter></term>
101        <listitem>
102          <para>This disables the detection of the architecture.</para>
103        </listitem>
104      </varlistentry>
105
106      <varlistentry>
107        <term><parameter>CPU=""</parameter></term>
108        <listitem>
109          <para>This disables the detection of the CPU.</para>
110        </listitem>
111      </varlistentry>
112
113    </variablelist>
114
115    <para os="bh">Install the package:</para>
116
117<screen os="bi"><userinput>make HAVE_KILL=yes HAVE_SLN=yes HAVE_SHADOW=no \
118USE_TTY_GROUP=no CPUOPT="" ARCH="" \
119CPU="" DESTDIR=${LFS} install</userinput></screen>
120
121  </sect2>
122
123  <sect2 role="content">
124    <title/>
125
126    <para>Details on this package are located in <xref
127    linkend="contents-util-linux" role="."/></para>
128
129  </sect2>
130
131</sect1>
Note: See TracBrowser for help on using the repository browser.