Ignore:
Timestamp:
02/04/2014 11:36:05 PM (11 years ago)
Author:
Krejzi <krejzi@…>
Branches:
7.5-systemd, 7.6-systemd, 7.7-systemd, 7.8-systemd, 7.9-systemd
Children:
f8756ab
Parents:
848907c
Message:

Merge latest lfs svn, update to D-Bus 1.8.0, fix Systemd to build with latest lfs changes.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10454 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/kernfs.xml

    r848907c re88c73c  
    2323    mounted:</para>
    2424
    25 <screen><userinput>mkdir -pv $LFS/{dev,proc,sys}</userinput></screen>
     25<screen><userinput>mkdir -pv $LFS/{dev,proc,sys,run}</userinput></screen>
    2626
    2727  <sect2>
     
    7171<screen><userinput>mount -vt devpts devpts $LFS/dev/pts -o gid=5,mode=620
    7272mount -vt proc proc $LFS/proc
    73 mount -vt sysfs sysfs $LFS/sys</userinput></screen>
     73mount -vt sysfs sysfs $LFS/sys
     74mount -vt tmpfs tmpfs $LFS/run</userinput></screen>
    7475
    7576    <variablelist>
     
    103104      <para>In some host systems, <filename>/dev/shm</filename> is a
    104105      symbolic link to <filename class="directory">/run/shm</filename>.
    105       Inside a chroot environment, this temporary file system needs
    106       to be mounted separate from the host file system:</para>
     106      The /run tmpfs was mounted above so in this case only a
     107      directory needs to be created.</para>
    107108
    108109<screen><userinput>if [ -h $LFS/dev/shm ]; then
    109   link=$(readlink $LFS/dev/shm)
    110   mkdir -pv $LFS/$link
    111   mount -vt tmpfs shm $LFS/$link
    112   unset link
    113 else
    114   mount -vt tmpfs shm $LFS/dev/shm
     110  mkdir -pv $LFS/$(readlink $LFS/dev/shm)
    115111fi</userinput></screen>
    116112
Note: See TracChangeset for help on using the changeset viewer.