Changeset 76b06f6 for BOOK/chroot


Ignore:
Timestamp:
Sep 24, 2013, 11:53:17 AM (11 years ago)
Author:
William Harrington <kb0iic@…>
Children:
2e9ccbe
Parents:
111b12a
Message:

Prepare for CLFS-2.0.0 release.

Location:
BOOK/chroot
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • BOOK/chroot/common/devices.xml

    r111b12a r76b06f6  
    3030
    3131    <para>This file&mdash;<filename>/etc/fstab</filename>&mdash;has not
    32     been created yet (unless using the boot method), but is also not required
    33     for the file systems to be properly mounted. The warning can be safely
    34     ignored.</para>
     32    been created yet but is also not required for the file systems to be
     33    properly mounted. As such, the warning can be safely ignored.</para>
    3534
    3635  </sect2>
  • BOOK/chroot/common/kernfs.xml

    r111b12a r76b06f6  
    3636  <para>Two device nodes, /dev/console and /dev/null, are required to be
    3737  present on the filesystem.  These are needed by the kernel even before
    38   starting Eudev early in the boot process, so we create them here:</para>
     38  starting Udev early in the boot process, so we create them here:</para>
    3939
    4040<screen><userinput>mknod -m 600 ${CLFS}/dev/console c 5 1
     
    4242
    4343  <para>Once the system is complete and booting, the rest of our device
    44   nodes are created by the Eudev package.  Since this package is not
     44  nodes are created by the Udev package.  Since this package is not
    4545  available to us right now, we must take other steps to provide device
    4646  nodes under on the CLFS filesystem.  We will use the <quote>bind</quote>
     
    5454  for each of these now:</para>
    5555
    56 <screen><userinput>if [ -h ${CLFS}/dev/shm ]; then
    57   link=$(readlink ${CLFS}/dev/shm)
    58   mkdir -p ${CLFS}/$link
    59   mount -f -vt tmpfs shm ${CLFS}/$link
    60   unset link
    61 else
    62   mount -f -vt tmpfs shm ${CLFS}/dev/shm
    63 fi
     56<screen><userinput>mount -f -vt tmpfs tmpfs ${CLFS}/dev/shm
    6457mount -f -vt devpts -o gid=&gid-tty;,mode=620 devpts ${CLFS}/dev/pts</userinput></screen>
    6558
  • BOOK/chroot/common/util-linux.xml

    r111b12a r76b06f6  
    2929<screen os="b"><userinput>./configure --prefix=/tools \
    3030    --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    31     --disable-makeinstall-chown --disable-su --disable-login</userinput></screen>
     31    --disable-makeinstall-chown --disable-su --disable-login \
     32    --config-cache</userinput></screen>
    3233
    3334    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/chroot/multilib/util-linux.xml

    r111b12a r76b06f6  
    2929<screen os="be"><userinput>CC="${CC} ${BUILD64}" ./configure --prefix=/tools \
    3030    --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    31     --disable-makeinstall-chown --disable-login --disable-su</userinput></screen>
     31    --disable-makeinstall-chown --disable-login --disable-su \
     32    --config-cache</userinput></screen>
    3233
    3334    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • BOOK/chroot/x86/before-chroot.xml

    r111b12a r76b06f6  
    3535    <command>config.guess</command>:</para>
    3636
    37 <screen><userinput>build-aux/config.guess</userinput></screen>
     37<screen><userinput>lib/config.guess</userinput></screen>
    3838
    3939    <para>If the output of that command does not equal what is in
     
    5555    directory:</para>
    5656
    57 <screen><userinput>setarch linux32 build-aux/config.guess</userinput></screen>
     57<screen><userinput>setarch linux32 lib/config.guess</userinput></screen>
    5858
    5959    <para>If the output of the command above equals what is in
     
    125125    directory:</para>
    126126
    127 <screen os="uui"><userinput>build-aux/config.guess</userinput></screen>
     127<screen os="uui"><userinput>lib/config.guess</userinput></screen>
    128128
    129129    <para os="uuj">The output of the above command should be the same as the
Note: See TracChangeset for help on using the changeset viewer.