Ignore:
Timestamp:
09/26/2022 02:03:23 PM (19 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
xry111/clfs-ng
Children:
259794e
Parents:
1f6dfd4 (diff), f427ba23 (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:

Merge remote-tracking branch 'origin/trunk' into xry111/clfs-ng

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter07/kernfs.xml

    r1f6dfd4 r0ea3431  
    8686ln -sv  /proc/self/fd   /dev</userinput></screen>
    8787
     88      <para>In other cases <filename>/dev/shm</filename> is a mountpoint
     89      for a tmpfs. In that case the mount of /dev above will only create
     90      /dev/shm in the chroot environment as a directory. In this situation
     91      we explicitly mount a tmpfs,</para>
     92
     93<screen><userinput>if [ -h $LFS/dev/shm ]; then
     94  mkdir -pv $LFS/$(readlink $LFS/dev/shm)
     95else
     96  mount -t tmpfs -o nosuid,nodev tmpfs $LFS/dev/shm
     97fi</userinput></screen>
     98
    8899  </sect2>
    89100
Note: See TracChangeset for help on using the changeset viewer.