Changeset d7a9421 for chapter04


Ignore:
Timestamp:
05/12/2021 04:24:11 AM (3 years ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
5ed37b3, c034573, df462a9
Parents:
0f7d4cb
Message:

Merge Xi's changes into trunk
Update to meson-0.58.0
Update to systemd-248
Update to gcc-11.1.0
Update to linux-5.12.1
Update to iproute2-5.12.0
Update to Python-3.9.5
Make /bin, /sbin, and /lib symlinks to their counterparts in /usr.
Thanks again for a significant portion of this work goes to Xi, I only
really merged it and made a couple of modifications for my updates. To
LFS 11.x we go!

Location:
chapter04
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter04/addinguser.xml

    r0f7d4cb rd7a9421  
    8181  <systemitem class="username">lfs</systemitem> the directory owner:</para>
    8282
    83 <screen><userinput>chown -v lfs $LFS/{usr,lib,var,etc,bin,sbin,tools}
     83<screen><userinput>chown -v lfs $LFS/{usr{,/*},lib,var,etc,bin,sbin,tools}
    8484case $(uname -m) in
    8585  x86_64) chown -v lfs $LFS/lib64 ;;
  • chapter04/creatingminlayout.xml

    r0f7d4cb rd7a9421  
    2121  <systemitem class="username">root</systemitem>:</para>
    2222
    23 <screen><userinput>mkdir -pv $LFS/{bin,etc,lib,sbin,usr,var}
     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
    2429case $(uname -m) in
    2530  x86_64) mkdir -pv $LFS/lib64 ;;
    2631esac</userinput></screen>
     32
     33    <note>
     34      <para>
     35        The above command is correct.  The <command>ln</command> command has
     36        a few syntactic versions, so be sure to check
     37                <command>info coreutils ln</command> and <filename>ln(1)</filename>
     38                before reporting what you may think is an error.
     39          </para>
     40    </note>
    2741
    2842  <para>Programs in <xref linkend="chapter-temporary-tools"/> will be compiled
Note: See TracChangeset for help on using the changeset viewer.