source: chapter04/creatingminlayout.xml@ 2ed0e93

11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 bdubbs/gcc13 multilib renodr/libudev-from-systemd trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 2ed0e93 was 2ed0e93, checked in by David Bryant <davidbryant@…>, 19 months ago

Refine verbiage in chapter 4.2 (Creating a limited directory layout).

  • Property mode set to 100644
File size: 1.6 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>The next task to be performed in the LFS partition is to create a limited
14 directory hierarchy, so that the programs compiled in <xref
15 linkend="chapter-temporary-tools"/> (as well as glibc and libstdc++ in <xref
16 linkend="chapter-cross-tools"/>) can be installed in their final
17 location. We do this so those temporary programs will be overwritten when
18 the final versions are built in <xref linkend="chapter-building-system"/>.</para>
19
20 <para>Create the required directory layout by issuing the following commands as
21 <systemitem class="username">root</systemitem>:</para>
22
23<screen><userinput>mkdir -pv $LFS/{etc,var} $LFS/usr/{bin,lib,sbin}
24
25for i in bin lib sbin; do
26 ln -sv usr/$i $LFS/$i
27done
28
29case $(uname -m) in
30 x86_64) mkdir -pv $LFS/lib64 ;;
31esac</userinput></screen>
32
33 <para>Programs in <xref linkend="chapter-temporary-tools"/> will be compiled
34 with a cross-compiler (more details can be found in section <xref
35 linkend="ch-tools-toolchaintechnotes"/>). This cross-compiler will be installed
36 in a special directory, to separate it from the other programs. Still acting as
37 &root;, create that directory with this command:</para>
38
39<screen><userinput>mkdir -pv $LFS/tools</userinput></screen>
40
41</sect1>
Note: See TracBrowser for help on using the repository browser.