Changeset 807b061


Ignore:
Timestamp:
02/03/2024 11:30:18 PM (8 months ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib, xry111/multilib
Children:
ce6d8f6
Parents:
5569a3e (diff), 8cf42d4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Automatic merge of trunk into multilib

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter07/kernfs.xml

    r5569a3e r807b061  
    9898-->
    9999      <para>In some host systems, <filename>/dev/shm</filename> is a
    100       symbolic link to <filename class="directory">/run/shm</filename>.
     100      symbolic link to a directory, typically
     101      <filename class="directory">/run/shm</filename>.
    101102      The /run tmpfs was mounted above so in this case only a
    102103      directory needs to be created.</para>
     
    108109
    109110<screen><userinput>if [ -h $LFS/dev/shm ]; then
    110   (cd $LFS/dev; mkdir $(readlink shm))
     111  mkdir -pv $LFS$(realpath /dev/shm)
    111112else
    112113  mount -vt tmpfs -o nosuid,nodev tmpfs $LFS/dev/shm
  • chapter08/glibc.xml

    r5569a3e r807b061  
    317317
    318318      <para>
    319         Then continue to run the <command>make install</command> command
    320         and the <command>sed</command> command against
    321         <filename>/usr/bin/ldd</filename>.  Once they are finished, reboot
    322         the system immediately.
     319        Then continue to run the <command>make install</command> command,
     320        the <command>sed</command> command against
     321        <filename>/usr/bin/ldd</filename>, and the commands to install
     322        the locales.  Once they are finished, reboot the system
     323        immediately.
    323324      </para>
    324325    </important>
  • chapter11/afterlfs.xml

    r5569a3e r807b061  
    131131mounttype run     tmpfs  run
    132132if [ -h $LFS/dev/shm ]; then
    133   mkdir -pv $LFS/$(readlink $LFS/dev/shm)
     133  mkdir -pv $LFS$(realpath /dev/shm)
    134134else
    135135  mounttype dev/shm tmpfs tmpfs -o nosuid,nodev
Note: See TracChangeset for help on using the changeset viewer.