creatingminlayout.xml 2.2 KB

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