Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • BOOK/boot/64/createfiles.xml

    rb925729 r85e1f266  
    1313  <title>Creating Essential Symlinks</title>
    1414
    15   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    16   href="../common/createfiles.xml"
    17   xpointer="xpointer(//*[@os='a'])"/>
     15  <para os="a">Some programs use hard-wired paths to programs which do not exist
     16  yet. In order to satisfy these programs, create a number of symbolic
     17  links which will be replaced by real files throughout the course of
     18  the next chapter after the software has been installed.</para>
    1819
    19   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    20   href="../common/createfiles.xml"
    21   xpointer="xpointer(//*[@os='b'])"/>
     20<screen><userinput>ln -sv /tools/bin/{bash,cat,echo,grep,login,passwd,pwd,sleep,stty} ${CLFS}/bin
     21ln -sv /tools/bin/file ${CLFS}/usr/bin
     22ln -sv /tools/sbin/{agetty,blkid} ${CLFS}/sbin
     23ln -sv /tools/lib/libgcc_s.so{,.1} ${CLFS}/usr/lib
     24ln -sv /tools/lib/libstd*so* ${CLFS}/usr/lib
     25ln -sv bash ${CLFS}/bin/sh
     26ln -sv ../run ${CLFS}/var/run</userinput></screen>
    2227
    23   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    24   href="../common/createfiles.xml"
    25   xpointer="xpointer(//*[@os='c'])"/>
    26 
    27   <para os="f">To enable some C++ tests in the Glibc and Binutils testsuites
     28  <para os="b">To enable some c++ tests in the Glibc and Binutils testsuites
    2829  to link, create a directory and make some symbolic links:</para>
    2930
    30 <screen os="g"><userinput>mkdir -pv ${CLFS}/usr/lib64
    31 ln -sv /tools/lib/libstdc++.so{.6,} ${CLFS}/usr/lib64</userinput></screen>
    32 
    33   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    34   href="../common/createfiles.xml"
    35   xpointer="xpointer(//*[@os='d'])"/>
    36 
    37   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    38   href="../common/createfiles.xml"
    39   xpointer="xpointer(//*[@os='e'])"/>
     31<screen><userinput>mkdir -pv ${CLFS}/usr/lib64
     32ln -sv /tools/lib/libstd*so* ${CLFS}/usr/lib64</userinput></screen>
    4033
    4134</sect1>
Note: See TracChangeset for help on using the changeset viewer.