source: chapter04/creatingminlayout.xml@ 032dc4e8

ml-11.0 multilib
Last change on this file since 032dc4e8 was 032dc4e8, checked in by Xℹ Ruoyao <xry111@…>, 3 years ago

Merge changes from trunk to multilib

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@12012 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.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-tools-creatingminlayout">
9 <?dbhtml filename="creatingminlayout.html"?>
10
11 <title>Creating a limited directory layout in LFS filesystem</title>
12
13 <para>The first task performed in the LFS partition is to create a limited
14 directory hierarchy so that programs compiled in <xref
15 linkend="chapter-temporary-tools"/> may be installed in their final
16 location. This is needed so that those temporary programs be overwritten
17 when rebuilding them in <xref linkend="chapter-building-system"/>.</para>
18
19 <para>Create the required directory layout by running the following as
20 <systemitem class="username">root</systemitem>:</para>
21
22<screen><userinput>mkdir -pv $LFS/{bin,etc,lib,sbin,usr,var}
23case $(uname -m) in
24 x86_64) mkdir -pv $LFS/lib64 ;;
25esac</userinput></screen>
26<screen arch="ml_32" ><userinput>mkdir -pv $LFS&lib-m32;</userinput></screen>
27<screen arch="ml_x32" ><userinput>mkdir -pv $LFS&lib-mx32;</userinput></screen>
28<screen arch="ml_all" ><userinput>mkdir -pv $LFS/lib{,x}32</userinput></screen>
29<!--
30<screen arch="ml_32" ><userinput>mkdir -pv $LFS/{usr/,}lib32</userinput></screen>
31<screen arch="ml_x32" ><userinput>mkdir -pv $LFS/{usr/,}libx32</userinput></screen>
32<screen arch="ml_all" ><userinput>mkdir -pv $LFS/{usr/,}{lib32,libx32}</userinput></screen>
33<screen arch="ml_32" ><userinput>mkdir -pv $LFS&usr-inc-m32;</userinput></screen>
34<screen arch="ml_x32" ><userinput>mkdir -pv $LFS&usr-inc-mx32;</userinput></screen>
35<screen arch="ml_all" ><userinput>mkdir -pv $LFS&usr-inc-m32;
36mkdir -pv $LFS&usr-inc-mx32;</userinput></screen>
37-->
38 <para>Programs in <xref linkend="chapter-temporary-tools"/> will be compiled
39 with a cross-compiler (more details in section <xref
40 linkend="ch-tools-toolchaintechnotes"/>). In order to separate this
41 cross-compiler from the other programs, it will be installed in a special
42 directory. Create this directory with:</para>
43
44<screen><userinput>mkdir -pv $LFS/tools</userinput></screen>
45
46</sect1>
Note: See TracBrowser for help on using the repository browser.