Changes in / [fd531b84:39d9ed8]
- Files:
-
- 6 added
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
chapter01/how.xml
rfd531b84 r39d9ed8 9 9 <?dbhtml filename="how.html"?> 10 10 11 <title>How to Build an LFS System</title>11 <title>How to Cross Build an LFS System</title> 12 12 13 13 <para>The LFS system will be built by using an already installed 14 Linux distribution (such as Debian, OpenMandriva, Fedora, or openSUSE). This15 existing Linuxsystem (the host) will be used as a starting point to14 UNIX-like system (such as Debian Linux or Mac OS X). This 15 existing UNIX-like system (the host) will be used as a starting point to 16 16 provide necessary programs, including a compiler, linker, and shell, 17 17 to build the new system. Select the <quote>development</quote> option … … 52 52 cross-compile basic utilities using the just built cross-toolchain.</para> 53 53 54 <para><xref linkend="chapter-chroot-temporary-tools"/> then enters a 55 "chroot" environment, where we use the new tools to build all 56 the rest of the tools needed to create the LFS system.</para> 54 <para><xref linkend="chapter-chroot-temporary-tools"/> then boots the 55 minimal Linux environment on the target machine, 56 where we use the new tools to build all 57 the rest of the tools needed to create the LFS system. 58 Note that in the book the minimal Linux environment may be 59 referred as <quote>chroot environment</quote> only to keep the consistency 60 with the original LFS book.</para> 57 61 58 62 <para>This effort to isolate the new system from the host distribution may … … 61 65 62 66 <para>In <xref linkend="chapter-building-system"/> the 63 full-blown LFS system is built. Another advantage provided by the chroot 64 environment is that it allows you to continue using the host system 65 while LFS is being built. While waiting for package compilations to 66 complete, you can continue using your computer as usual.</para> 67 full LFS system is built.</para> 67 68 68 69 <para>To finish the installation, the basic system configuration is set up in -
chapter02/aboutlfs.xml
rfd531b84 r39d9ed8 15 15 throughout the LFS build process. It should be set to the name of the 16 16 directory where you will be building your LFS system - we will use 17 <filename class="directory">/mnt/lfs</filename> as an example, but you may 18 choose any directory name you want. If you are building LFS on a separate 19 partition, this directory will be the mount point for the partition. 20 Choose a directory location and set the variable with the 21 following command:</para> 17 <filename class="directory">/mnt/lfs</filename> as an example, but the 18 choose any directory name you want. Choose a directory location and set the 19 variable with the following command:</para> 22 20 23 21 <screen role="nodump"><userinput>export LFS=<replaceable>/mnt/lfs</replaceable></userinput></screen> … … 28 26 <quote>/mnt/lfs</quote> (or whatever value the variable was set to) when it 29 27 processes the command line.</para> 28 29 <para>Create the directory:</para> 30 31 <screen role="nodump"><userinput>mkdir -pv $LFS</userinput></screen> 32 33 <para>If you don't have much space in the partition holding the directory, 34 you can mount another partition on it.</para> 30 35 31 36 <caution> -
chapter02/chapter02.xml
rfd531b84 r39d9ed8 15 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="hostreqs.xml"/> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="stages.xml"/> 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="creatingpartition.xml"/>18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="creatingfilesystem.xml"/>19 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="aboutlfs.xml"/> 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mounting.xml"/>21 18 22 19 </chapter> -
chapter02/hostreqs.xml
rfd531b84 r39d9ed8 16 16 <para>The LFS editors recommend that the system CPU have at least 17 17 four cores and that the system have at least 8 GB of memory. 18 19 For the Cross Edition, it's recommended that both the system running 20 the host distribution and the target system should meet the 21 requirements. 22 18 23 Older systems that do not meet these requirements will still work, 19 24 but the time to build packages will be significantly longer … … 51 56 52 57 <listitem> 58 <!-- needed to cross build the kernel in chapter 6 --> 59 <para><emphasis role="strong">Bc-1.07.0</emphasis></para> 60 </listitem> 61 62 <listitem> 53 63 <para><emphasis role="strong">Bison-2.7</emphasis> (/usr/bin/yacc 54 64 should be a link to bison or a small script that executes bison)</para> … … 86 96 <listitem> 87 97 <para><emphasis role="strong">Gzip-1.3.12</emphasis></para> 88 </listitem>89 90 <listitem>91 <para><emphasis role="strong">Linux Kernel-&min-kernel;</emphasis></para>92 93 <para>The reason for the kernel version requirement is that we specify94 that version when building <application>glibc</application> in95 <xref linkend="chapter-cross-tools"/> and96 <xref linkend="chapter-building-system"/>,97 at the recommendation of the developers.</para>98 99 <para>If the host kernel is earlier than &min-kernel; you will need to replace100 the kernel with a more up-to-date version. There are two ways101 you can go about this. First, see if your Linux vendor provides a &min-kernel;102 or later kernel package. If so, you may wish to install it. If your103 vendor doesn't offer an acceptable kernel package, or you would prefer not to104 install it, you can compile a kernel yourself. Instructions for105 compiling the kernel and configuring the boot loader (assuming the host106 uses GRUB) are located in <xref linkend="chapter-bootable"/>.</para>107 108 <para>We require the host kernel to support UNIX 98 pseudo terminal109 (PTY). It should be enabled on all desktop or server distros shipping110 Linux &min-kernel; or a newer kernel. If you are building a custom111 host kernel, ensure <option>CONFIG_UNIX98_PTYS</option> is set to112 <literal>y</literal> in the kernel configuration.</para>113 114 98 </listitem> 115 99 … … 202 186 } 203 187 204 ver_kernel()205 {206 kver=$(uname -r | grep -E -o '^[0-9\.]+')207 if printf '%s\n' $1 $kver | sort --version-sort --check &>/dev/null208 then209 printf "OK: Linux Kernel $kver >= $1\n"; return 0;210 else211 printf "ERROR: Linux Kernel ($kver) is TOO OLD ($1 or later required)\n" "$kver";212 return 1;213 fi214 }215 216 188 # Coreutils first because-sort needs Coreutils >= 7.0 217 189 ver_check Coreutils sort 7.0 || bail "--version-sort unsupported" 218 190 ver_check Bash bash 3.2 191 ver_check Bc bc 1.07.0 219 192 ver_check Binutils ld 2.13.1 220 193 ver_check Bison bison 2.7 … … 235 208 ver_check Texinfo texi2any 4.7 236 209 ver_check Xz xz 5.0.0 237 ver_kernel &min-kernel;238 239 if mount | grep -q 'devpts on /dev/pts' && [ -e /dev/ptmx ]240 then echo "OK: Linux Kernel supports UNIX 98 PTY";241 else echo "ERROR: Linux Kernel does NOT support UNIX 98 PTY"; fi242 210 243 211 alias_check() { -
chapter02/stages.xml
rfd531b84 r39d9ed8 65 65 <itemizedlist> 66 66 <listitem> 67 <para>The /mnt/lfs partition must be mounted.</para>67 <para>You must boot the temporary system on the target machine.</para> 68 68 </listitem> 69 69 70 70 <listitem> 71 <para>A few operations, from <quote>Changing Ownership</quote> to 72 <quote>Entering the Chroot Environment</quote>, must be done as the 73 <systemitem class="username">root</systemitem> user, with the LFS 74 environment variable set for the &root; user.</para> 71 <para>A few operations, from 72 <quote>Preparing Virtual Kernel File Systems</quote> to 73 <quote>Setting up Environment</quote>, must be done.</para> 75 74 </listitem> 76 75 77 76 <listitem> 78 <para> When entering chroot, the LFS environment variable must be set79 for <systemitem class="username">root</systemitem>. The LFS80 variable is not used after the chroot environment has been entered.</para>77 <para>The operations in <xref linkend="ch-tools-lo"/> must be done 78 before starting or continuing from 79 <xref linkend="chapter-building-system"/>.</para> 81 80 </listitem> 82 81 83 <listitem>84 <para> The virtual file systems must be mounted. This can be done85 before or after entering chroot by changing to a host virtual terminal86 and, as <systemitem class="username">root</systemitem>, running the87 commands in88 <xref linkend='ch-tools-bindmount'/> and89 <xref linkend='ch-tools-kernfsmount'/>.</para>90 </listitem>91 82 </itemizedlist> 92 83 </sect2> -
chapter04/aboutsbus.xml
rfd531b84 r39d9ed8 38 38 39 39 <note> 40 <para>In the cross edition, the SBUs are kept same as the original LFS 41 book. They should only be considered as a reference. It obviously does 42 not make sense to predict the building time in Chapter 7 or 8 with 43 <quote>1 SBU</quote> measured in Chapter 5, as the target machine and 44 the machine running the host distro may be completely different.</para> 45 </note> 46 47 <note> 40 48 <para>For many modern systems with multiple processors (or cores) the 41 49 compilation time for a package can be reduced by performing a "parallel -
chapter04/addinguser.xml
rfd531b84 r39d9ed8 81 81 <systemitem class="username">lfs</systemitem> the owner:</para> 82 82 83 <screen><userinput>chown -v lfs $LFS/{usr{,/*},lib,var,etc,bin,sbin,tools} 84 case $(uname -m) in 85 x86_64) chown -v lfs $LFS/lib64 ;; 86 esac</userinput></screen> 83 <screen><userinput>chown -v lfs $LFS/{usr{,/*},lib*,boot,var,etc,bin,sbin,tools}</userinput></screen> 87 84 88 85 <note><para>In some host systems, the following <command>su</command> command does not complete -
chapter04/creatingminlayout.xml
rfd531b84 r39d9ed8 22 22 <systemitem class="username">root</systemitem>:</para> 23 23 24 <screen><userinput>mkdir -pv $LFS/{ etc,var} $LFS/usr/{bin,lib,sbin}24 <screen><userinput>mkdir -pv $LFS/{boot,etc,var} $LFS/usr/{bin,lib,sbin} 25 25 26 26 for i in bin lib sbin; do 27 27 ln -sv usr/$i $LFS/$i 28 done 28 done</userinput></screen> 29 29 30 case $(uname -m) in 31 x86_64) mkdir -pv $LFS/lib64 ;; 32 esac</userinput></screen> 30 <para>Some targets (for example, x86_64) needs 31 <filename class="directory">/lib64</filename> directory. If you are 32 building for one of those targets, create it as 33 <systemitem class="username">root</systemitem>:</para> 34 35 <screen><userinput>mkdir -pv $LFS/lib64</userinput></screen> 33 36 34 37 <para>Programs in <xref linkend="chapter-temporary-tools"/> will be compiled -
chapter04/settingenviron.xml
rfd531b84 r39d9ed8 44 44 LFS=/mnt/lfs 45 45 LC_ALL=POSIX 46 LFS_TGT= $(uname -m)-lfs-linux-gnu46 LFS_TGT=<replaceable>x86_64</replaceable>-lfs-linux-gnu 47 47 PATH=/usr/bin 48 48 if [ ! -L /bin ]; then PATH=/bin:$PATH; fi … … 105 105 106 106 <varlistentry> 107 <term><parameter>LFS_TGT= (uname -m)-lfs-linux-gnu</parameter></term>107 <term><parameter>LFS_TGT=<replaceable>x86_64</replaceable>-lfs-linux-gnu</parameter></term> 108 108 <listitem> 109 109 <para>The <envar>LFS_TGT</envar> variable sets a non-default, but compatible machine 110 110 description for use when building our cross-compiler and linker and when 111 111 cross-compiling our temporary toolchain. More information is provided by 112 <xref linkend="ch-tools-toolchaintechnotes" role=""/>.</para> 112 <xref linkend="ch-tools-toolchaintechnotes" role=""/>. 113 If you are not building for 64-bit x86, replace 114 <replaceable>x86_64</replaceable> with some value suitable for your target 115 machine, for example <literal>i686</literal> for 32-bit x86.</para> 113 116 </listitem> 114 117 </varlistentry> -
chapter05/gcc-pass1.xml
rfd531b84 r39d9ed8 63 63 mv -v mpc-&mpc-version; mpc</userinput></screen> 64 64 65 <para>On x86_64 hosts, set the default directory name for 66 64-bit libraries to <quote>lib</quote>:</para> 67 68 <screen><userinput remap="pre">case $(uname -m) in 69 x86_64) 70 sed -e '/m64=/s/lib64/lib/' \ 71 -i.orig gcc/config/i386/t-linux64 72 ;; 73 esac</userinput></screen> 65 <para>For x86_64 target, set the default directory name for 66 64-bit libraries to <quote>lib</quote>. The command is unnecessary, 67 but harmless for 32-bit x86. If you are building for another target, 68 you may need to adjust the command for your target.</para> 69 70 <screen><userinput remap="pre">sed -e '/m64=/s/lib64/lib/' \ 71 -i.orig gcc/config/i386/t-linux64</userinput></screen> 74 72 75 73 <para>The GCC documentation recommends building GCC -
chapter05/glibc.xml
rfd531b84 r39d9ed8 46 46 <para>First, create a symbolic link for LSB compliance. Additionally, 47 47 for x86_64, create a compatibility symbolic link required for proper 48 operation of the dynamic library loader:</para> 49 50 <screen><userinput remap="pre">case $(uname -m) in 51 i?86) ln -sfv ld-linux.so.2 $LFS/lib/ld-lsb.so.3 48 operation of the dynamic library loader. It's needed to adjust the 49 command if you are building LFS for a target other than 32-bit or 50 64-bit x86.</para> 51 52 <screen><userinput remap="pre">case $LFS_TGT in 53 i?86*) ln -sfv ld-linux.so.2 $LFS/lib/ld-lsb.so.3 52 54 ;; 53 x86_64 ) ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib6454 ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.355 x86_64*) ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64 56 ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3 55 57 ;; 56 58 esac</userinput></screen> … … 90 92 --host=$LFS_TGT \ 91 93 --build=$(../scripts/config.guess) \ 92 --enable-kernel=& min-kernel;\94 --enable-kernel=&linux-major-version;.&linux-minor-version; \ 93 95 --with-headers=$LFS/usr/include \ 94 96 libc_cv_slibdir=/usr/lib</userinput></screen> … … 107 109 108 110 <varlistentry> 109 <term><parameter>--enable-kernel=&min-kernel;</parameter></term> 110 <listitem> 111 <para>This tells Glibc to compile the library with support 112 for &min-kernel; and later Linux kernels. Workarounds for older 113 kernels are not enabled.</para> 111 <term><parameter>--enable-kernel=&linux-major-version;.&linux-minor-version;</parameter></term> 112 <listitem> 113 <para>This option tells the build system that this glibc may 114 be used with kernels as old as 115 &linux-major-version;.&linux-minor-version;. This means generating 116 workarounds in case a system call introduced in a later version 117 cannot be used.</para> 114 118 </listitem> 115 119 </varlistentry> -
chapter05/linux-headers.xml
rfd531b84 r39d9ed8 57 57 be available. The headers are first placed in 58 58 <filename class="directory">./usr</filename>, then copied to the needed 59 location.</para> 60 61 <screen><userinput remap="make">make headers 59 location. Replace <replaceable>x86</replaceable> with a value suitable 60 for your target machine if it's not a 32-bit or 64-bit x86:</para> 61 62 <screen><userinput remap="make">make headers ARCH=<replaceable>x86</replaceable> 62 63 find usr/include -type f ! -name '*.h' -delete 63 64 </userinput><userinput remap="install">cp -rv usr/include $LFS/usr</userinput></screen> -
chapter06/chapter06.xml
rfd531b84 r39d9ed8 32 32 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gcc-pass2.xml"/> 33 33 34 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="util-linux.xml"/> 35 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="grub.xml"/> 36 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="kernel.xml"/> 37 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="grub-cfg.xml"/> 38 34 39 </chapter> -
chapter06/gcc-pass2.xml
rfd531b84 r39d9ed8 58 58 mv -v mpc-&mpc-version; mpc</userinput></screen> 59 59 60 <para>If building on x86_64, change the default directory name for 64-bit 61 libraries to <quote>lib</quote>:</para> 60 <para>For x86_64 target, set the default directory name for 61 64-bit libraries to <quote>lib</quote>. The command is unnecessary, 62 but harmless for 32-bit x86. If you are building for another target, 63 you may need to adjust the command for your target.</para> 62 64 63 <screen><userinput remap="pre">case $(uname -m) in 64 x86_64) 65 sed -e '/m64=/s/lib64/lib/' -i.orig gcc/config/i386/t-linux64 66 ;; 67 esac</userinput></screen> 65 <screen><userinput remap="pre">sed -e '/m64=/s/lib64/lib/' \ 66 -i.orig gcc/config/i386/t-linux64</userinput></screen> 68 67 69 68 <para>Override the building rule of libgcc and libstdc++ headers, to -
chapter07/chapter07.xml
rfd531b84 r39d9ed8 10 10 <?dbhtml filename="chapter07.html"?> 11 11 12 <title> Entering Chrootand Building Additional Temporary Tools</title>12 <title>Booting the Target System and Building Additional Temporary Tools</title> 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="introduction.xml"/> 15 < xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="changingowner.xml"/>15 <!--xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="changingowner.xml"/--> 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="kernfs.xml"/> 17 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="chroot.xml"/> … … 24 24 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="texinfo.xml"/> 25 25 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="util-linux.xml"/> 26 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="iproute2.xml"/> 26 27 27 28 <!-- -
chapter07/chroot.xml
rfd531b84 r39d9ed8 7 7 8 8 <sect1 id="ch-tools-chroot"> 9 <?dbhtml filename=" chroot.html"?>9 <?dbhtml filename="env.html"?> 10 10 11 <title> Entering the ChrootEnvironment</title>11 <title>Setting up the Environment</title> 12 12 13 <para>Now that all the packages which are required to build the rest of the 14 needed tools are on the system, it is time to enter the chroot environment and 15 finish installing the temporary tools. This environment will also be 16 used to install the final system. As user <systemitem 17 class="username">root</systemitem>, run the following command to enter the 18 environment that is, at the moment, populated with nothing but temporary 19 tools:</para> 13 <para>The current shell is also the <command>init</command> process, 14 so exiting from it will cause kernel panic. Prevent exiting from the 15 shell accidentally:</para> 20 16 21 <screen role="nodump"><userinput>chroot "$LFS" /usr/bin/env -i \ 17 <screen role="nodump"><userinput>enable -n exit 18 readonly IGNOREEOF=1000</userinput></screen> 19 20 <para>The standard I/O streams of the initial shell process is connected 21 with <filename>/dev/console</filename>. However, the testsuite of some 22 packages may expect the standard I/O streams to be connected with a 23 <quote>real</quote> TTY device node. Spawn a new shell process on the 24 TTY device with <command>agetty</command>:</para> 25 26 <screen role="nodump"><userinput>agetty -n -l /bin/bash <replaceable>tty0</replaceable></userinput></screen> 27 28 <para>If you are working via a serial console, replace 29 <replaceable>tty0</replaceable> with the name of the serial console 30 device node, for example <literal>ttyS0</literal>.</para> 31 32 <para>The command above spawns a new shell process on the TTY device 33 specified in the command, and the initial shell process will run in 34 background as an init process with very limited functions. The new shell 35 process will output:</para> 36 37 <screen role="nodump"><computeroutput>bash: cannot set terminal process group (-1): Inappropriate ioctl for device 38 bash: no job control in this shell</computeroutput></screen> 39 40 <para>This is normal because the shell is not assigned with a 41 controlling terminal yet. Now set up controlling terminal and 42 environment variables:</para> 43 44 <screen><userinput>exec setsid -c /usr/bin/env -i \ 22 45 HOME=/root \ 23 46 TERM="$TERM" \ 24 PS1='(lfs chroot) \u:\w\$ '\47 PS1='(lfs) \u:\w\$ ' \ 25 48 PATH=/usr/bin:/usr/sbin \ 26 49 /bin/bash --login</userinput></screen> 27 50 51 <para>The command replace the current shell process with a new shell 52 process, with controlling terminal set up.</para> 53 28 54 <para>The <parameter>-i</parameter> option given to the <command>env</command> 29 command will clear all the variables in the chrootenvironment. After that, only55 command will clear all the variables in the environment. After that, only 30 56 the <envar>HOME</envar>, <envar>TERM</envar>, <envar>PS1</envar>, and 31 57 <envar>PATH</envar> variables are set again. The 32 <parameter>TERM=$TERM</parameter> construct setsthe <envar>TERM</envar>33 variable inside chroot to the same value as outside chroot. This variable is58 <parameter>TERM=$TERM</parameter> construct will set the <envar>TERM</envar> 59 variable to the default value specified by <command>agetty</command>. This variable is 34 60 needed so programs like <command>vim</command> and <command>less</command> 35 61 can operate properly. If other variables are desired, such as 36 62 <envar>CFLAGS</envar> or <envar>CXXFLAGS</envar>, this is a good place to set 37 63 them.</para> 38 39 <para>From this point on, there is no need to use the40 <envar>LFS</envar> variable any more because all work will be restricted41 to the LFS file system; the <command>chroot</command> command runs the42 Bash shell with the root43 (<filename class="directory">/</filename>) directory set to44 <filename class='directory'>$LFS</filename>.</para>45 64 46 65 <para>Notice that <filename class="directory">/tools/bin</filename> is not … … 52 71 <filename>/etc/passwd</filename> file has not been created yet.</para> 53 72 73 <para>Now set up a temporary hostname, which is required by test suite of 74 some packages:</para> 75 76 <screen><userinput>hostname lfs</userinput></screen> 77 54 78 <note> 55 79 <para>It is important that all the commands throughout the remainder of this 56 chapter and the following chapters are run from within the chroot57 environment. If you leave this environment for any reason (rebooting for80 chapter and the following chapters are run from within the environment 81 we've set. If you leave this environment for any reason (rebooting for 58 82 example), ensure that the virtual kernel filesystems are mounted as 59 explained in <xref linkend="ch-tools- bindmount"/> and <xref60 linkend="ch-tools-kernfsmount"/> and enter chroot again before continuing61 with the installation.</para>83 explained in <xref linkend="ch-tools-kernfsmount"/> and 84 <xref linkend="ch-tools-devadjust"/> and set up the environment again before 85 continuing with the installation.</para> 62 86 </note> 63 87 -
chapter07/cleanup.xml
rfd531b84 r39d9ed8 58 58 59 59 <para> 60 The following steps are performed from outside the chroot 61 environment. That means you have to leave the chroot environment 62 first before continuing. The reason for that is to 63 get access to file system locations outside of the chroot 64 environment to store/read the backup archive, which ought 65 not be placed within the 66 <filename class="directory">$LFS</filename> hierarchy. 60 If you are making a backup, mount the partition for backup: 67 61 </para> 68 62 69 <para> 70 If you have decided to make a backup, leave the chroot environment: 71 </para> 72 73 <screen role="nodump"><userinput>exit</userinput></screen> 74 75 <important> 76 <para> 77 All of the following instructions are executed by 78 <systemitem class="username">root</systemitem> on your host system. 79 Take extra care about the commands you're going to run as mistakes 80 made here can modify your host system. Be aware that the 81 environment variable <envar>LFS</envar> 82 is set for user <systemitem class="username">lfs</systemitem> by default 83 but may <emphasis>not</emphasis> be set for 84 <systemitem class="username">root</systemitem>. 85 </para> 86 <para> 87 Whenever commands are to be executed by <systemitem class="username">root</systemitem>, 88 make sure you have set <envar>LFS</envar>. 89 </para> 90 <para> 91 This has been discussed in <xref linkend='ch-partitioning-aboutlfs'/>. 92 </para> 93 </important> 94 95 <para>Before making a backup, unmount the virtual file systems:</para> 96 97 <screen role="nodump"><userinput>mountpoint -q $LFS/dev/shm && umount $LFS/dev/shm 98 umount $LFS/dev/pts 99 umount $LFS/{sys,proc,run,dev}</userinput></screen> 63 <screen role="nodump"><userinput>mount -v /dev/sda<replaceable>4</replaceable> /mnt</userinput></screen> 100 64 101 65 <para> 102 66 Make sure you have at least 1 GB free disk space (the source tarballs 103 will be included in the backup archive) on the file system containing104 the directory where you create the backup archive.67 will be included in the backup archive) in the partition prepared for 68 backup. 105 69 </para> 106 70 … … 125 89 </note> 126 90 127 <screen role="nodump"><userinput>cd $LFS 128 tar -cJpf $HOME/lfs-temp-tools-&version;.tar.xz .</userinput></screen> 91 <screen role="nodump"><userinput>cd / 92 tar -cJpf /mnt/lfs-temp-tools-&version;.tar.xz . \ 93 --exclude="dev/*" --exclude="proc/*" 94 --exclude="sys/*" --exclude="run/*" 95 --exclude="mnt/*"</userinput></screen> 129 96 130 <note> 131 <para> 132 If continuing to chapter 8, don't forget to reenter the chroot 133 environment as explained in the <quote>Important</quote> box below. 134 </para> 135 </note> 97 <para>Unmount the partition containing the backup:</para> 98 99 <screen role="nodump"><userinput>umount /mnt</userinput></screen> 136 100 137 101 </sect2> … … 143 107 In case some mistakes have been made and you need to start over, you can 144 108 use this backup to restore the system and save some recovery time. 145 Since the sources are located under 146 <filename class="directory">$LFS</filename>, they are included in the 147 backup archive as well, so they do not need to be downloaded again. After 148 checking that <envar>$LFS</envar> is set properly, you can 149 restore the backup by executing the following commands: 109 Since the sources are included in the 110 backup archive as well, so they do not need to be downloaded again. 150 111 </para> 112 113 <warning><para> 114 Power off the target system and reconnect the disk containing LFS 115 temporary system to the host for restoring the backup. It's necessary 116 to avoid overwriting some binaries being used. Because the package 117 providing <command>shutdown</command> command is not built yet, the 118 system can't be shut down cleanly. Issue <command>sync</command> to 119 ensure all filesystem writes cached in memory to be really written 120 into the disk, then power off the system physically (for example, 121 unplug the AC cord). 122 </para></warning> 123 124 <para>Mount the LFS partition and the backup partition on 125 <emphasis role="bold">the host system</emphasis>:</para> 151 126 152 127 <!-- Make the following look different so users don't blindly run the 153 128 restore when they don't need to. --> 154 129 130 <screen role="nodump"><computeroutput>mkdir -pv /mnt/lfs-{target,backup} 131 mount -v -t ext4 <replaceable>/dev/sdx</replaceable>3 /mnt/lfs-target 132 mount -v -t ext4 <replaceable>/dev/sdx4</replaceable> /mnt/lfs-backup</computeroutput></screen> 133 134 155 135 <warning><para>The following commands are extremely dangerous. If 156 136 you run <command>rm -rf ./*</command> as the &root; user and you 157 do not change to the $LFS directory or the <envar>LFS</envar>158 environment variable is not set for the &root; user, it will destroy159 your entire host system.YOU ARE WARNED.</para></warning>137 do not change to the <filename>lfs-target</filename> directory, 138 it will destroy your entire host system. 139 YOU ARE WARNED.</para></warning> 160 140 161 <screen role="nodump"><computeroutput>cd $LFS141 <screen role="nodump"><computeroutput>cd /mnt/lfs-target 162 142 rm -rf ./* 163 tar -xpf $HOME/lfs-temp-tools-&version;.tar.xz</computeroutput></screen>143 tar -xpf /mnt/lfs-backup/lfs-temp-tools-&version;.tar.xz</computeroutput></screen> 164 144 165 145 <para> 166 Again, double check that the environment has been set up properly167 and continue building the rest of the system.146 Again, unmount the two partitions, reconnect the device to the target 147 machine, boot it and continue building the rest of system: 168 148 </para> 149 150 <screen role="nodump"><computeroutput>umount /mnt/lfs-{target,backup}</computeroutput></screen> 169 151 170 152 <important> 171 153 <para> 172 If you left the chroot environment to create a backup or restart 173 building using a restore, remember to check that the virtual 174 file systems are still mounted (<command>findmnt | grep 175 $LFS</command>). If they are not mounted, remount them now as 176 described in <xref linkend='ch-tools-kernfs'/> and re-enter the chroot 154 If you reboot your target machine and restart 155 building using a restore, remount the virtual filesystems now as 156 described in <xref linkend='ch-tools-kernfs'/> and re-enter the build 177 157 environment (see <xref linkend='ch-tools-chroot'/>) before continuing. 178 158 </para> -
chapter07/introduction.xml
rfd531b84 r39d9ed8 11 11 <title>Introduction</title> 12 12 13 <warning> 14 <para>Please make sure the temporary system is already booted on the 15 target machine. All commands in this chapter and the following chapters 16 should be executed on the target machine instead of the host distro, 17 unless the book explicitly says a command is for the host. Running a 18 command for the temporary system on the host can completely destroy the 19 host distro.</para> 20 </warning> 21 13 22 <para>This chapter shows how to build the last missing bits of the temporary 14 23 system: the tools needed to build the various packages. Now 15 that all circular dependencies have been resolved, a <quote>chroot</quote> 16 environment, completely isolated from the host operating system (except for 17 the running kernel), can be used for the build.</para> 24 that all circular dependencies have been resolved and the temporary system 25 is already bootable, we can boot it on the target machine and it would be 26 completely isolated from the host operating system. Then we can continue 27 to build on the target machine.</para> 18 28 19 <para>For proper operation of the isolated environment, some communication20 with the running kernel must be established. This is done viathe29 <para>For proper operation of the temporary system, some communication 30 with the running kernel must be established. This is done through the 21 31 so-called <emphasis>Virtual Kernel File Systems</emphasis>, which will be 22 mounted before entering the chroot environment. You may want to verify23 that they are mounted by issuing the <command>findmnt</command> command.</para>32 mounted as soon as possible after boot. You may want to check 33 that they are mounted by issuing <command>mount</command>.</para> 24 34 25 <para>Until <xref linkend="ch-tools-chroot"/>, the commands must be 26 run as <systemitem class="username">root</systemitem>, with the 27 <envar>LFS</envar> variable set. After entering chroot, all commands 28 are run as &root;, fortunately without access to the OS of the computer 29 you built LFS on. Be careful anyway, as it is easy to destroy the whole 30 LFS system with bad commands.</para> 35 <para>All commands in this and following chapters are run as &root; on the 36 target system, fortunately without access to the host system. 37 Be careful anyway, as if the storage devices of your target system already 38 contain some important data, it's possible to destroy them with bad 39 commands.</para> 31 40 32 41 </sect1> -
chapter07/kernfs.xml
rfd531b84 r39d9ed8 19 19 with the kernel itself. These file systems are virtual: no disk 20 20 space is used for them. The content of these file systems resides in 21 memory. These file systems must be mounted in the $LFS directory tree 22 so the applications can find them in the chroot environment.</para> 21 memory.</para> 23 22 24 23 <para>Begin by creating the directories on which these virtual file systems will be 25 24 mounted:</para> 26 25 27 <screen><userinput>mkdir -pv $LFS/{dev,proc,sys,run}</userinput></screen> 28 29 <sect2 id="ch-tools-bindmount"> 30 <title>Mounting and Populating /dev</title> 31 32 <para>During a normal boot of an LFS system, the kernel automatically 33 mounts the <systemitem class="filesystem">devtmpfs</systemitem> 34 file system on the 35 <filename class="directory">/dev</filename> directory; the kernel 36 creates device nodes on that virtual file system during the boot process, 37 or when a device is first detected or accessed. The udev daemon may 38 change the ownership or permissions of the device nodes created by the 39 kernel, and create new device nodes or symlinks, to ease the work of 40 distro maintainers and system administrators. (See 41 <xref linkend='ch-config-udev-device-node-creation'/> for details.) 42 If the host kernel supports &devtmpfs;, we can simply mount a 43 &devtmpfs; at <filename class='directory'>$LFS/dev</filename> and rely 44 on the kernel to populate it.</para> 45 46 <para>But some host kernels lack &devtmpfs; support; these 47 host distros use different methods to create the content of 48 <filename class="directory">/dev</filename>. 49 So the only host-agnostic way to populate the 50 <filename class="directory">$LFS/dev</filename> directory is 51 by bind mounting the host system's 52 <filename class="directory">/dev</filename> directory. A bind mount is 53 a special type of mount that makes a directory subtree or a file 54 visible at some other location. Use the following 55 command to do this.</para> 56 57 <screen><userinput>mount -v --bind /dev $LFS/dev</userinput></screen> 58 59 </sect2> 26 <screen><userinput>mkdir -pv /{proc,sys,run}</userinput></screen> 60 27 61 28 <sect2 id="ch-tools-kernfsmount"> 62 29 <title>Mounting Virtual Kernel File Systems</title> 63 30 64 <para>Now mount the remaining virtual kernel file systems:</para> 31 <para>The kernel has already mounted 32 <systemitem class="filesystem">devtmpfs</systemitem>. 33 Mount the remaining virtual kernel file systems:</para> 65 34 66 <screen><userinput>mount -v --bind /dev/pts $LFS/dev/pts 67 mount -vt proc proc $LFS/proc 68 mount -vt sysfs sysfs $LFS/sys 69 mount -vt tmpfs tmpfs $LFS/run</userinput></screen> 70 <!-- 35 <screen><userinput>mkdir -pv /dev/{pts,shm} 36 mount -vt devpts /dev/pts /dev/pts -o gid=5,mode=620 37 mount -vt proc proc /proc 38 mount -vt sysfs sysfs /sys 39 mount -vt tmpfs tmpfs /run 40 mount -vt tmpfs tmpfs /dev/shm -o nosuid,nodev</userinput></screen> 41 71 42 <variablelist> 72 43 <title>The meaning of the mount options for devpts:</title> … … 96 67 97 68 </variablelist> 98 -->99 <para>In some host systems, <filename>/dev/shm</filename> is a100 symbolic link to <filename class="directory">/run/shm</filename>.101 The /run tmpfs was mounted above so in this case only a102 directory needs to be created.</para>103 69 104 <para>In other host systems <filename>/dev/shm</filename> is a mount point 105 for a tmpfs. In that case the mount of /dev above will only create 106 /dev/shm as a directory in the chroot environment. In this situation 107 we must explicitly mount a tmpfs:</para> 70 </sect2> 108 71 109 <screen><userinput>if [ -h $LFS/dev/shm ]; then 110 mkdir -pv $LFS/$(readlink $LFS/dev/shm) 111 else 112 mount -t tmpfs -o nosuid,nodev tmpfs $LFS/dev/shm 113 fi</userinput></screen> 72 <sect2 id="ch-tools-devadjust"> 73 <title>Adjusting devtmpfs</title> 74 75 <para>Now <systemitem class='filesystem'>proc</systemitem> filesystem 76 is mounted, we can replace the device nodes for standard I/O streams 77 with symlinks to pseudo files in 78 <filename class="directory">/proc/self/fd</filename> (which are symlinks 79 to the files connected to the standard I/O streams for the current 80 process). And, create another symlink recommended by the kernel 81 documentation. These are necessary for I/O redirection in the building 82 system of some packages to function properly:</para> 83 84 <screen><userinput>ln -sfv /proc/self/fd/0 /dev/stdin 85 ln -sfv /proc/self/fd/1 /dev/stdout 86 ln -sfv /proc/self/fd/2 /dev/stderr 87 ln -sv /proc/self/fd /dev</userinput></screen> 114 88 115 89 </sect2> -
chapter08/coreutils.xml
rfd531b84 r39d9ed8 108 108 meant to be run as user <systemitem class="username">root</systemitem>:</para> 109 109 110 <screen><userinput remap="test">make NON_ROOT_USERNAME=tester check-root</userinput></screen> 110 <!-- CLFS note: "su -c" to set the supplementary group IDs. 111 For a normal LFS build, they are already set by 'login' or 'su'. 112 But for CLFS there is no such tool available at the beginning of 113 chapter 7. Currently coreutils is the only package of which the 114 test suite needs the supplementary GIDs set up. --> 115 <screen><userinput remap="test">su -c 'make NON_ROOT_USERNAME=tester check-root'</userinput></screen> 111 116 112 117 <para>We're going to run the remainder of the tests as the -
chapter08/expect.xml
rfd531b84 r39d9ed8 97 97 you've not mounted the 98 98 <systemitem class="filesystem">devpts</systemitem> file system 99 correctly. You need to exit from the chroot environment,read100 <xref linkend='ch-tools-kernfs'/> again ,and ensure the99 correctly. You need to read 100 <xref linkend='ch-tools-kernfs'/> again and ensure the 101 101 <systemitem class="filesystem">devpts</systemitem> file system (and 102 other virtual kernel file systems) mounted correctly. Then reenter 103 the chroot environment following <xref linkend='ch-tools-chroot'/>. 102 other virtual kernel file systems) mounted correctly. 104 103 This issue needs to be resolved before continuing.</para> 105 104 -
chapter08/gcc.xml
rfd531b84 r39d9ed8 55 55 <screen><userinput remap="pre">patch -Np1 -i ../&gcc-upstream-fixes-patch;</userinput></screen> 56 56 --> 57 <para>If building on x86_64, change the default directory name for 64-bit 58 libraries to <quote>lib</quote>:</para> 59 60 <screen><userinput remap="pre">case $(uname -m) in 61 x86_64) 62 sed -e '/m64=/s/lib64/lib/' \ 63 -i.orig gcc/config/i386/t-linux64 64 ;; 65 esac</userinput></screen> 57 58 <para>For x86_64 target, set the default directory name for 59 64-bit libraries to <quote>lib</quote>. The command is unnecessary, 60 but harmless for 32-bit x86. If you are building for another target, 61 you may need to adjust the command for your target.</para> 62 63 <screen><userinput remap="pre">sed -e '/m64=/s/lib64/lib/' \ 64 -i.orig gcc/config/i386/t-linux64</userinput></screen> 66 65 67 66 <para>The GCC documentation recommends building GCC in a dedicated build directory:</para> -
chapter08/glibc.xml
rfd531b84 r39d9ed8 77 77 <screen><userinput remap="configure">../configure --prefix=/usr \ 78 78 --disable-werror \ 79 --enable-kernel=& min-kernel;\79 --enable-kernel=&linux-major-version;.&linux-minor-version; \ 80 80 --enable-stack-protector=strong \ 81 81 --with-headers=/usr/include \ … … 94 94 95 95 <varlistentry> 96 <term><parameter>--enable-kernel=& min-kernel;</parameter></term>96 <term><parameter>--enable-kernel=&linux-major-version;.&linux-minor-version;</parameter></term> 97 97 <listitem> 98 98 <para>This option tells the build system that this Glibc may 99 be used with kernels as old as &min-kernel;. This means generating 99 be used with kernels as old as 100 &linux-major-version;.&linux-minor-version;. This means generating 100 101 workarounds in case a system call introduced in a later version 101 102 cannot be used.</para> -
chapter10/fstab.xml
rfd531b84 r39d9ed8 26 26 # order 27 27 28 /dev/<replaceable> <xxx></replaceable> / <replaceable><fff></replaceable>defaults 1 129 /dev/<replaceable> <yyy></replaceable> swap swap pri=1 0 028 /dev/<replaceable>sda</replaceable>3 / ext4 defaults 1 1 29 /dev/<replaceable>sda</replaceable>2 /boot ext4 defaults 0 2 30 30 proc /proc proc nosuid,noexec,nodev 0 0 31 31 sysfs /sys sysfs nosuid,noexec,nodev 0 0 … … 44 44 # order 45 45 46 /dev/<replaceable> <xxx></replaceable> / <replaceable><fff></replaceable>defaults 1 147 /dev/<replaceable> <yyy></replaceable> swap swap pri=1 0 046 /dev/<replaceable>sda</replaceable>3 / ext4 defaults 1 1 47 /dev/<replaceable>sda</replaceable>2 /boot ext4 defaults 0 2 48 48 49 49 # End /etc/fstab</literal> 50 50 EOF</userinput></screen> 51 51 52 <para>Replace <replaceable><xxx></replaceable>, 53 <replaceable><yyy></replaceable>, and <replaceable><fff></replaceable> 54 with the values appropriate for the system, for example, <filename 55 class="partition">sda2</filename>, <filename 56 class="partition">sda5</filename>, and <systemitem 57 class="filesystem">ext4</systemitem>. For details on the six 52 <para>Replace <replaceable>sda</replaceable> to the name of the device 53 node for your disk where LFS is being built. For details on the six 58 54 fields in this file, see <command>man 5 fstab</command>.</para> 59 55 -
chapter10/grub.xml
rfd531b84 r39d9ed8 77 77 is /boot/grub/.</para> 78 78 79 <para>The location of the boot partition is a choice of the user that 80 affects the configuration. One recommendation is to have a separate small 81 (suggested size is 200 MB) partition just for boot information. That way 82 each build, whether LFS or some commercial distro, can access the same boot 83 files and access can be made from any booted system. If you choose to do 84 this, you will need to mount the separate partition, move all files in the 85 current <filename class="directory">/boot</filename> directory (e.g. the 86 Linux kernel you just built in the previous section) to the new partition. 87 You will then need to unmount the partition and remount it as <filename 88 class="directory">/boot</filename>. If you do this, be sure to update 89 <filename>/etc/fstab</filename>.</para> 90 91 <para>Leaving <filename class="directory">/boot</filename> on 92 the current LFS partition will also work, but configuration 93 for multiple systems is more difficult.</para> 94 95 <para>Using the above information, determine the appropriate 96 designator for the root partition (or boot partition, if a separate 97 one is used). For the following example, it is assumed that the root 98 (or separate boot) partition is <filename 99 class="partition">sda2</filename>.</para> 79 <para>For the following example, it is assumed that the root 80 partition is <filename class="partition">sda3</filename>, and the 81 seperate boot partition is 82 <filename class="partition">sda2</filename>. Replace 83 <replaceable>sda</replaceable> to the name of the device node for your 84 disk where LFS is being built.</para> 100 85 101 86 <para>Install the GRUB files into <filename … … 146 131 147 132 menuentry "GNU/Linux, Linux &linux-version;-lfs-&version;" { 148 linux / boot/vmlinuz-&linux-version;-lfs-&version; root=/dev/sda2ro133 linux /vmlinuz-&linux-version;-lfs-&version; root=/dev/sda3 ro 149 134 }</literal> 150 135 EOF</userinput></screen> -
chapter10/kernel.xml
rfd531b84 r39d9ed8 392 392 393 393 <caution> 394 <para>If you've decided to use a separate &boot-dir; partition for the 395 LFS system (maybe sharing a &boot-dir; partition with the host 396 distro) , the files copied below should go there. The easiest way to 394 <para>As the cross-built LFS system has a separate &boot-dir; 395 partition, the files copied below should go there. The easiest way to 397 396 do that is to create the entry for &boot-dir; in &fstab; first (read 398 397 the previous section for details), then issue the following command 399 as the &root; user in the 400 <emphasis>chroot environment</emphasis>:</para> 398 as the &root; user:</para> 401 399 402 400 <screen role="nodump"><userinput>mount /boot</userinput></screen> 403 401 404 <para> The path to the device node is omitted in the command because405 <command>mount</command> can read it from &fstab;.</para>402 <para>We don't need to specify the path to the device node, as it's 403 already given in <filename>/etc/fstab</filename>.</para> 406 404 </caution> 407 405 -
chapter11/afterlfs.xml
rfd531b84 r39d9ed8 74 74 75 75 <sect3> 76 <title>Work from the LFS host in chroot</title>77 78 <para>79 This method provides a complete graphical environment where a full80 featured browser and copy/paste capabilities are available. This method81 allows using applications like the host's version of wget to download82 package sources to a location available when working in the chroot83 envirnment.84 </para>85 86 <para>87 In order to properly build packages in chroot, you will also need to88 remember to mount the virtual file systems if they are not already89 mounted. One way to do this is to create a script on the90 <emphasis role="bold">HOST</emphasis> system:91 </para>92 93 <screen><command>cat > ~/mount-virt.sh << "EOF"94 #!/bin/bash95 96 function mountbind97 {98 if ! mountpoint $LFS/$1 >/dev/null; then99 $SUDO mount --bind /$1 $LFS/$1100 echo $LFS/$1 mounted101 else102 echo $LFS/$1 already mounted103 fi104 }105 106 function mounttype107 {108 if ! mountpoint $LFS/$1 >/dev/null; then109 $SUDO mount -t $2 $3 $4 $5 $LFS/$1110 echo $LFS/$1 mounted111 else112 echo $LFS/$1 already mounted113 fi114 }115 116 if [ $EUID -ne 0 ]; then117 SUDO=sudo118 else119 SUDO=""120 fi121 122 if [ x$LFS == x ]; then123 echo "LFS not set"124 exit 1125 fi126 127 mountbind dev128 mounttype dev/pts devpts devpts -o gid=5,mode=620129 mounttype proc proc proc130 mounttype sys sysfs sysfs131 mounttype run tmpfs run132 if [ -h $LFS/dev/shm ]; then133 mkdir -pv $LFS/$(readlink $LFS/dev/shm)134 else135 mounttype dev/shm tmpfs tmpfs -o nosuid,nodev136 fi137 138 #mountbind usr/src139 #mountbind boot140 #mountbind home141 EOF</command></screen>142 143 <para>144 Note that the last three commands in the script are commented out. These145 are useful if those directories are mounted as separate partitions on the146 host system and will be mounted when booting the completed LFS/BLFS system.147 </para>148 149 <para>150 The script can be run with <command>bash ~/mount-virt.sh</command> as151 either a regular user (recommended) or as &root;. If run as a regular152 user, sudo is required on the host system.153 </para>154 155 <para>156 Another issue pointed out by the script is where to store downloaded157 package files. This location is arbitrary. It can be in a regular158 user's home directory such as ~/sources or in a global location like159 /usr/src. Our recommendation is not to mix BLFS sources and LFS sources160 in (from the chroot environment) /sources. In any case, the packages161 must be accessible inside the chroot environment.162 </para>163 164 <para>165 A last convenience feature presented here is to streamline the process166 of entering the chroot environment. This can be done with an alias167 placed in a user's ~/.bashrc file on the host system:168 </para>169 170 <screen><command>alias lfs='sudo /usr/sbin/chroot /mnt/lfs /usr/bin/env -i HOME=/root TERM="$TERM" PS1="\u:\w\\\\$ "171 PATH=/bin:/usr/bin:/sbin:/usr/sbin /bin/bash --login'</command></screen>172 173 <para>174 This alias is a little tricky because of the quoting and levels of175 backslash characters. It must be all on a single line. The above command176 has been split in two for presentation purposes.177 </para>178 179 </sect3>180 181 <sect3>182 76 <title>Work remotely via ssh</title> 183 77 … … 187 81 <ulink url="&blfs-book;postlfs/openssh.html">sshd</ulink> and 188 82 <ulink url="&blfs-book;basicnet/wget.html">wget</ulink> 189 on the LFS system, usually in chroot. It also requires a second 190 computer. This method has the advantage of being simple by not requiring 191 the complexity of the chroot environment. It also uses your LFS built 192 kernel for all additional packages and still provides a complete system 193 for installing packages. 83 on the LFS system, usually in the LFS command line. It also requires 84 a second computer. 194 85 </para> 195 86 … … 208 99 <ulink url="&blfs-book;basicnet/links.html">links</ulink> 209 100 (or <ulink url="&blfs-book;basicnet/lynx.html">lynx</ulink>) 210 in chroot and then rebooting into the new LFS system. At this 101 after rebooting into the new LFS system. You may need a removable 102 stroage device to copy these packages into the target system. At this 211 103 point the default system has six virtual consoles. Switching 212 104 consoles is as easy as using the -
chapter11/reboot.xml
rfd531b84 r39d9ed8 105 105 106 106 <para>Now that we have said that, let's move on to booting our shiny new LFS 107 installation for the first time! <emphasis>First exit from the chroot 108 environment</emphasis>:</para> 107 installation for the first time!</para> 109 108 110 <screen><userinput>logout</userinput></screen> 111 <!-- We need to show the user the details...--> 109 <para>Unmount the boot partition:</para> 112 110 113 <para>Then unmount the virtual file systems:</para>111 <screen role="nodump"><userinput>umount /boot</userinput></screen> 114 112 115 <screen><userinput>umount -v $LFS/dev/pts 116 mountpoint -q $LFS/dev/shm && umount $LFS/dev/shm 117 umount -v $LFS/dev 118 umount -v $LFS/run 119 umount -v $LFS/proc 120 umount -v $LFS/sys</userinput></screen> 113 <para>Synchronize cached writes to prevent data loss on reboot without a 114 fully functional <command>init</command> process:</para> 121 115 122 <para>If multiple partitions were created, unmount the other 123 partitions before unmounting the main one, like this:</para> 116 <screen role="nodump"><userinput>sync</userinput></screen> 124 117 125 <screen role="nodump"><userinput>umount -v $LFS/home 126 umount -v $LFS</userinput></screen> 118 <para>Now, reboot the system:</para> 127 119 128 <para>Unmount the LFS file system itself:</para>120 <screen role="nodump"><userinput>reboot -ff</userinput></screen> 129 121 130 <screen role="nodump"><userinput>umount -v $LFS</userinput></screen> 131 132 <para>Now, reboot the system.</para> 133 134 <!-- Commented out because we don't have a host system requirement on 135 its init, and different init system may recommend different commands 136 for reboot. --> 137 <!--<screen role="nodump"><userinput>shutdown -r now</userinput></screen>--> 122 <para><parameter>-ff</parameter> option allows to reboot the system 123 without support from the <command>init</command> process.</para> 138 124 139 125 <para>Assuming the GRUB boot loader was set up as outlined earlier, the menu -
git-version.sh
rfd531b84 r39d9ed8 50 50 sha="$(git describe --abbrev=1)" 51 51 rev=$(echo "$sha" | sed 's/-g[^-]*$//') 52 version=" $rev"53 versiond=" $rev-systemd"52 version="cross-$rev" 53 versiond="cross-$rev-systemd" 54 54 55 55 if [ "$(git diff HEAD | wc -l)" != "0" ]; then -
packages.ent
rfd531b84 r39d9ed8 315 315 <!ENTITY grub-fin-du "161 MB"> 316 316 <!ENTITY grub-fin-sbu "0.3 SBU"> 317 <!ENTITY grub-tmp-du "161 MB"> 318 <!ENTITY grub-tmp-sbu "0.3 SBU"> 317 319 318 320 <!ENTITY gzip-version "1.12"> … … 358 360 <!ENTITY iproute2-fin-du "17 MB"> 359 361 <!ENTITY iproute2-fin-sbu "0.1 SBU"> 362 <!ENTITY iproute2-tmp-du "15 MB"> 363 <!ENTITY iproute2-tmp-sbu "less than 0.1 SBU"> 360 364 361 365 <!ENTITY jinja2-version "3.1.2"> … … 445 449 <!ENTITY linux-knl-du "1200 - 8800 MB (typically about 1700 MB)"> 446 450 <!ENTITY linux-knl-sbu "1.5 - 130.0 SBU (typically about 12 SBU)"> 451 <!ENTITY linux-tmp-du "1200 MB"> 452 <!ENTITY linux-tmp-sbu "1.5 SBU"> 447 453 448 454 <!ENTITY linux-headers-tmp-du "1.5 GB"> … … 723 729 <!ENTITY util-linux-fin-sbu "0.5 SBU"> 724 730 731 <!ENTITY mount-setsid-du "85 MB"> 732 <!ENTITY mount-setsid-sbu "less than 0.1 SBU"> 733 725 734 <!ENTITY vim-version "9.0.1273"> 726 735 <!-- <!ENTITY vim-majmin "90"> --> -
prologue/architecture.xml
rfd531b84 r39d9ed8 13 13 <para>The primary target architectures of LFS are the AMD/Intel x86 (32-bit) 14 14 and x86_64 (64-bit) CPUs. On the other hand, the instructions in this book are 15 also known to work, with some modifications, with the Power PC and ARM CPUs. To 16 build a system that utilizes one of these alternative CPUs, the main prerequisite, in 17 addition to those on the next page, is an existing Linux system such as an 18 earlier LFS installation, Ubuntu, Red Hat/Fedora, SuSE, or some other distribution 19 that targets that architecture. (Note that a 32-bit 20 distribution can be installed and used as a host system on a 64-bit AMD/Intel 21 computer.)</para> 15 also known to work, with some modifications, with the Power PC and ARM 16 CPUs.</para> 22 17 23 18 <para>The gain from building on a 64-bit system, as -
prologue/preface.xml
rfd531b84 r39d9ed8 16 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="architecture.xml"/> 17 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="prerequisites.xml"/> 18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="cross.xml"/> 18 19 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="standards.xml"/> 19 20 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="why.xml"/>
Note:
See TracChangeset
for help on using the changeset viewer.