Changeset ce6d8f6


Ignore:
Timestamp:
02/04/2024 11:30:17 PM (4 months ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib
Children:
2e43fd4
Parents:
807b061 (diff), 1541b7c (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:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter07/kernfs.xml

    r807b061 rce6d8f6  
    101101      <filename class="directory">/run/shm</filename>.
    102102      The /run tmpfs was mounted above so in this case only a
    103       directory needs to be created.</para>
     103      directory needs to be created with the correct permissions.</para>
    104104
    105105      <para>In other host systems <filename>/dev/shm</filename> is a mount point
     
    109109
    110110<screen><userinput>if [ -h $LFS/dev/shm ]; then
    111   mkdir -pv $LFS$(realpath /dev/shm)
     111  install -v -d -m 1777 $LFS$(realpath /dev/shm)
    112112else
    113113  mount -vt tmpfs -o nosuid,nodev tmpfs $LFS/dev/shm
  • chapter11/afterlfs.xml

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