creatingminlayout.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  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. <sect1 id="ch-tools-creatingminlayout">
  8. <?dbhtml filename="creatingminlayout.html"?>
  9. <title>Creating the Minimal directory layout in LFS filesystem</title>
  10. <para>The first task performed in the LFS partition is to create a minimal
  11. directory hierarchy so that programs compiled in <xref
  12. linkend="chapter-temporary-tools"/> may be installed in their final
  13. location. This is needed so that those temporary programs be overwritten
  14. when rebuilding them in <xref linkend="chapter-building-system"/>.</para>
  15. <para>Create the required directory layout by running the following as
  16. <systemitem class="username">root</systemitem>:</para>
  17. <screen><userinput>mkdir -pv $LFS/{usr,lib,var,etc,bin,sbin}
  18. case $(uname -m) in
  19. x86_64) mkdir -pv $LFS/lib64 ;;
  20. esac</userinput></screen>
  21. <para>Programs in <xref linkend="chapter-temporary-tools"/> will be compiled
  22. with a cross-compiler (more details in section <xref
  23. linkend="ch-tools-toolchaintechnotes"/>). In order to separate this
  24. cross-compiler from the other programs, it will be installed in a special
  25. directory. Create this directory with:</para>
  26. <screen><userinput>mkdir -pv $LFS/tools</userinput></screen>
  27. </sect1>