source: chapter04/creatingminlayout.xml@ dd61c77

xry111/clfs-ng
Last change on this file since dd61c77 was dd61c77, checked in by Xi Ruoyao <xry111@…>, 19 months ago

Merge remote-tracking branch 'origin/trunk' into xry111/clfs-ng

  • Property mode set to 100644
File size: 1.9 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-tools-creatingminlayout">
9 <?dbhtml filename="creatingminlayout.html"?>
10
11 <title>Creating a limited directory layout in LFS filesystem</title>
12
13 <para>In this section, we begin populating the LFS filesystem with the
14 pieces that will constitute the final Linux system. The first step is to
15 create a limited directory hierarchy, so that the programs compiled in <xref
16 linkend="chapter-temporary-tools"/> (as well as glibc and libstdc++ in <xref
17 linkend="chapter-cross-tools"/>) can be installed in their final
18 location. We do this so those temporary programs will be overwritten when
19 the final versions are built in <xref linkend="chapter-building-system"/>.</para>
20
21 <para>Create the required directory layout by issuing the following commands as
22 <systemitem class="username">root</systemitem>:</para>
23
24<screen><userinput>mkdir -pv $LFS/{boot,etc,var} $LFS/usr/{bin,lib,sbin}
25
26for i in bin lib sbin; do
27 ln -sv usr/$i $LFS/$i
28done</userinput></screen>
29
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>
36
37 <para>Programs in <xref linkend="chapter-temporary-tools"/> will be compiled
38 with a cross-compiler (more details can be found in section <xref
39 linkend="ch-tools-toolchaintechnotes"/>). This cross-compiler will be installed
40 in a special directory, to separate it from the other programs. Still acting as
41 &root;, create that directory with this command:</para>
42
43<screen><userinput>mkdir -pv $LFS/tools</userinput></screen>
44
45</sect1>
Note: See TracBrowser for help on using the repository browser.