source: chapter04/settingenviron.xml@ 07fd8bf8

multilib
Last change on this file since 07fd8bf8 was 981e0c4, checked in by Thomas Trepl (Moody) <thomas@…>, 19 months ago

Automatic merge of trunk into multilib

  • Property mode set to 100644
File size: 9.2 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-preps-settingenviron">
9 <?dbhtml filename="settingenvironment.html"?>
10
11 <title>Setting Up the Environment</title>
12
13 <para>Set up a good working environment by creating two new startup files
14 for the <command>bash</command> shell. While logged in as user
15 <systemitem class="username">lfs</systemitem>, issue the following command
16 to create a new <filename>.bash_profile</filename>:</para>
17
18<screen><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
19<literal>exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash</literal>
20EOF</userinput></screen>
21
22 <para>When logged on as user <systemitem class="username">lfs</systemitem>,
23 or when switched to the &lfs-user; user using an <command>su</command> command
24 with the <quote><parameter>-</parameter></quote> option,
25 the initial shell is a <emphasis>login</emphasis> shell which reads
26 the <filename>/etc/profile</filename> of the host (probably containing some
27 settings and environment variables) and then <filename>.bash_profile</filename>.
28 The <command>exec env -i.../bin/bash</command> command in the
29 <filename>.bash_profile</filename> file replaces the running shell with a new
30 one with a completely empty environment, except for the <envar>HOME</envar>,
31 <envar>TERM</envar>, and <envar>PS1</envar> variables. This ensures that no
32 unwanted and potentially hazardous environment variables from the host system
33 leak into the build environment.</para>
34
35 <para>The new instance of the shell is a <emphasis>non-login</emphasis>
36 shell, which does not read, and execute, the contents of the <filename>/etc/profile</filename> or
37 <filename>.bash_profile</filename> files, but rather reads, and executes, the
38 <filename>.bashrc</filename> file instead. Create the
39 <filename>.bashrc</filename> file now:</para>
40
41<screen arch="default"><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
42<literal>set +h
43umask 022
44LFS=/mnt/lfs
45LC_ALL=POSIX
46LFS_TGT=$(uname -m)-lfs-linux-gnu
47PATH=/usr/bin
48if [ ! -L /bin ]; then PATH=/bin:$PATH; fi
49PATH=$LFS/tools/bin:$PATH
50CONFIG_SITE=$LFS/usr/share/config.site
51export LFS LC_ALL LFS_TGT PATH CONFIG_SITE</literal>
52EOF</userinput></screen>
53<screen arch="ml_32,ml_x32,ml_all"><userinput>cat &gt; ~/.bashrc &lt;&lt; "EOF"
54<literal>set +h
55umask 022
56LFS=/mnt/lfs
57LC_ALL=POSIX
58LFS_TGT=x86_64-lfs-linux-gnu
59LFS_TGT32=i686-lfs-linux-gnu
60LFS_TGTX32=x86_64-lfs-linux-gnux32
61PATH=/usr/bin
62if [ ! -L /bin ]; then PATH=/bin:$PATH; fi
63PATH=$LFS/tools/bin:$PATH
64CONFIG_SITE=$LFS/usr/share/config.site
65export LFS LC_ALL LFS_TGT LFS_TGT32 LFS_TGTX32 PATH</literal>
66EOF</userinput></screen>
67
68 <variablelist>
69 <title>The meaning of the settings in <filename>.bashrc</filename></title>
70
71 <varlistentry>
72 <term><parameter>set +h</parameter></term>
73 <listitem>
74 <para>The <command>set +h</command> command turns off
75 <command>bash</command>'s hash function. Hashing is ordinarily a useful
76 feature&mdash;<command>bash</command> uses a hash table to remember the
77 full path to executable files to avoid searching the <envar>PATH</envar>
78 time and again to find the same executable. However, the new tools should
79 be used as soon as they are installed. Switching off the hash function forces
80 the shell to search the <envar>PATH</envar> whenever a program is to
81 be run. As such, the shell will find the newly compiled tools in
82 <filename class="directory">$LFS/tools/bin</filename> as soon as they are
83 available without remembering a previous version of the same program
84 provided by the host distro, in
85 <filename class='directory'>/usr/bin</filename> or
86 <filename class='directory'>/bin</filename>.</para>
87 </listitem>
88 </varlistentry>
89
90 <varlistentry>
91 <term><parameter>umask 022</parameter></term>
92 <listitem>
93 <para>Setting the user file-creation mask (umask) to 022 ensures that newly
94 created files and directories are only writable by their owner, but are
95 readable and executable by anyone (assuming default modes are used by the
96 <function>open(2)</function> system call, new files will end up with permission
97 mode 644 and directories with mode 755).</para>
98 </listitem>
99 </varlistentry>
100
101 <varlistentry>
102 <term><parameter>LFS=/mnt/lfs</parameter></term>
103 <listitem>
104 <para>The <envar>LFS</envar> variable should be set to the chosen mount
105 point.</para>
106 </listitem>
107 </varlistentry>
108
109 <varlistentry>
110 <term><parameter>LC_ALL=POSIX</parameter></term>
111 <listitem>
112 <para>The <envar>LC_ALL</envar> variable controls the localization of certain
113 programs, making their messages follow the conventions of a specified country.
114 Setting <envar>LC_ALL</envar> to <quote>POSIX</quote> or <quote>C</quote>
115 (the two are equivalent) ensures that everything will work as expected in
116 the cross-compilation environment.</para>
117 </listitem>
118 </varlistentry>
119
120 <varlistentry>
121 <term><parameter>LFS_TGT=(uname -m)-lfs-linux-gnu</parameter></term>
122 <listitem>
123 <para>The <envar>LFS_TGT</envar> variable sets a non-default, but compatible machine
124 description for use when building our cross-compiler and linker and when
125 cross-compiling our temporary toolchain. More information is provided by
126 <xref linkend="ch-tools-toolchaintechnotes" role=""/>.</para>
127 </listitem>
128 </varlistentry>
129
130 <varlistentry>
131 <term><parameter>PATH=/usr/bin</parameter></term>
132 <listitem>
133 <para>Many modern Linux distributions have merged <filename
134 class="directory">/bin</filename> and <filename
135 class="directory">/usr/bin</filename>. When this is the case, the standard
136 <envar>PATH</envar> variable should be set to <filename
137 class="directory">/usr/bin/</filename> for the <xref
138 linkend="chapter-temporary-tools"/> environment. When this is not the
139 case, the following line adds <filename class="directory">/bin</filename>
140 to the path.</para>
141 </listitem>
142 </varlistentry>
143
144 <varlistentry>
145 <term><parameter>if [ ! -L /bin ]; then PATH=/bin:$PATH; fi</parameter></term>
146 <listitem>
147 <para>If <filename class="directory">/bin</filename> is not a symbolic
148 link, it must be added to the <envar>PATH</envar> variable.</para>
149 </listitem>
150 </varlistentry>
151
152 <varlistentry>
153 <term><parameter>PATH=$LFS/tools/bin:$PATH</parameter></term>
154 <listitem>
155 <para>By putting <filename class="directory">$LFS/tools/bin</filename> ahead of the
156 standard <envar>PATH</envar>, the cross-compiler installed at the beginning
157 of <xref linkend="chapter-cross-tools"/> is picked up by the shell
158 immediately after its installation. This, combined with turning off hashing,
159 limits the risk that the compiler from the host is used instead of the
160 cross-compiler.</para>
161 </listitem>
162 </varlistentry>
163
164 <varlistentry>
165 <term><parameter>CONFIG_SITE=$LFS/usr/share/config.site</parameter></term>
166 <listitem>
167 <para>In <xref linkend="chapter-cross-tools"/> and
168 <xref linkend="chapter-temporary-tools"/>, if this variable is not set,
169 <command>configure</command> scripts
170 may attempt to load configuration items specific to some distributions from
171 <filename>/usr/share/config.site</filename> on the host system. Override
172 it to prevent potential contamination from the host.</para>
173 </listitem>
174 </varlistentry>
175
176 <varlistentry>
177 <term><parameter>export ...</parameter></term>
178 <listitem>
179 <para>While the preceding commands have set some variables, in order
180 to make them visible within any sub-shells, we export them.</para>
181 </listitem>
182 </varlistentry>
183
184 </variablelist>
185
186 <important>
187
188 <para>Several commercial distributions add an undocumented instantiation
189 of <filename>/etc/bash.bashrc</filename> to the initialization of
190 <command>bash</command>. This file has the potential to modify the
191 <systemitem class="username">lfs</systemitem>
192 user's environment in ways that can affect the building of critical LFS
193 packages. To make sure the <systemitem class="username">lfs</systemitem>
194 user's environment is clean, check for the
195 presence of <filename>/etc/bash.bashrc</filename> and, if present, move it
196 out of the way. As the <systemitem class="username">root</systemitem>
197 user, run:</para>
198
199 <screen role="nodump"><userinput>[ ! -e /etc/bash.bashrc ] || mv -v /etc/bash.bashrc /etc/bash.bashrc.NOUSE</userinput></screen>
200
201 <para>When the <systemitem class="username">lfs</systemitem>
202 user is no longer needed (at the beginning of <xref
203 linkend="chapter-chroot-temporary-tools"/>), you may safely restore
204 <filename>/etc/bash.bashrc</filename> (if desired).</para>
205
206 <para>Note that the LFS Bash package we will build in
207 <xref linkend="ch-system-bash"/> is not configured to load or execute
208 <filename>/etc/bash.bashrc</filename>, so this file is useless on a
209 completed LFS system.</para>
210 </important>
211
212 <para>Finally, to ensure the environment is fully prepared for building the
213 temporary tools, force the <command>bash</command> shell to read
214 the new user profile:</para>
215
216<screen><userinput>source ~/.bash_profile</userinput></screen>
217
218</sect1>
Note: See TracBrowser for help on using the repository browser.