source: chapter04/settingenviron.xml@ f3b2f16

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

Automatic merge of trunk into multilib

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