Changeset 7b08ae24


Ignore:
Timestamp:
06/17/2012 05:57:40 PM (12 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
c433b2f
Parents:
2fa5f26
Message:

Added a stronger note about automake teste time.

Updated boot scripts:

Only mount /run in mountvirtfs if it is not already mounted
(from an initrd).

Force the /dev/shm->/run/shm symlink

Skip making LVM virtual groups unavailable at shutdown
because the / or swap partitions may be still in use.

Fix some whitespace in iproute2.

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

Files:
8 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

    r2fa5f26 r7b08ae24  
     12012-06-17 Bruce Dubbs <bdubbs@linuxfromscratch.org>
     2   * Only mount /run in mountvirtfs if it is not already mounted
     3     (from an initrd).
     4   * Force the /dev/shm->/run/shm symlink
     5   * Skip making LVM virtual groups unavailable at shutdown
     6     because the / or swap partitions may be still in use.
     7
    182012-05-30 Bruce Dubbs <bdubbs@linuxfromscratch.org>
    29   * Copy all entries in /lib/udev/devices to /dev in mounvirtfs
  • bootscripts/lfs/init.d/mountfs

    r2fa5f26 r7b08ae24  
    6767
    6868      # Make all LVM volume groups unavailable, if appropriate
    69       if [ -x /sbin/vgchange ]; then /sbin/vgchange -an > /dev/null; fi
     69      # This fails if swap or / are on an LVM partition
     70      #if [ -x /sbin/vgchange ]; then /sbin/vgchange -an > /dev/null; fi
    7071      ;;
    7172
  • bootscripts/lfs/init.d/mountvirtfs

    r2fa5f26 r7b08ae24  
    3333   start)
    3434      # Make sure /run/var is available before logging any messages
    35       mount -n /run || failed=1
     35      if ! mountpoint /sys >/dev/null; then
     36         mount -n /run || failed=1
     37      fi
     38
    3639      mkdir -p /run/var /run/lock /run/shm
    3740      chmod 1777 /run/shm
     
    5760      cp -a /lib/udev/devices/* /dev
    5861
    59       ln -s /run/shm /dev/shm
     62      ln -sfn /run/shm /dev/shm
    6063     
    6164      (exit ${failed})
  • chapter01/changelog.xml

    r2fa5f26 r7b08ae24  
    3737
    3838-->
     39    <listitem>
     40      <para>2012-06-17</para>
     41      <itemizedlist>
     42         <listitem>
     43           <para>[bdubbs] - Update rare issues in bootscripts when using LVM
     44           or initramfs.</para>
     45         </listitem>
     46         <listitem>
     47           <para>[bdubbs] - Add note about automake run time for tests.
     48           Fixes <ulink url="&lfs-ticket-root;3118">#3118</ulink>.</para>
     49         </listitem>
     50      </itemizedlist>
     51    </listitem>
     52
    3953    <listitem>
    4054      <para>2012-06-10</para>
  • chapter06/automake.xml

    r2fa5f26 r7b08ae24  
    5050<screen><userinput remap="make">make</userinput></screen>
    5151
     52    <note><para>The tests take a very long time: over 30 SBUs.  Running
     53    the tests is not recommended.</para></note>
     54
    5255    <para>To test the results, issue:</para>
    5356
    5457<screen><userinput remap="test">make check</userinput></screen>
    55 
    56     <para>This takes a long time, about 10 SBUs.</para>
    5758
    5859    <para>Install the package:</para>
  • chapter06/iproute2.xml

    r2fa5f26 r7b08ae24  
    8383    <para>Install the package:</para>
    8484
    85 <screen><userinput remap="install">
    86 make DESTDIR=              \
     85<screen><userinput remap="install">make DESTDIR=              \
    8786     MANDIR=/usr/share/man \
    8887     DOCDIR=/usr/share/doc/iproute2-&iproute2-version; install</userinput></screen>
  • general.ent

    r2fa5f26 r7b08ae24  
    1 <!ENTITY version "SVN-20120610">
    2 <!ENTITY releasedate "June 10, 2012">
     1<!ENTITY version "SVN-20120617">
     2<!ENTITY releasedate "June 17, 2012">
    33<!ENTITY copyrightdate "1999-2012"><!-- jhalfs needs a literal dash, not &ndash; -->
    44<!ENTITY milestone "7.2">
  • packages.ent

    r2fa5f26 r7b08ae24  
    2323<!ENTITY automake-home "&gnu-software;automake/">
    2424<!ENTITY automake-ch6-du "28.8 MB">
    25 <!ENTITY automake-ch6-sbu "18.3 SBU">
     25<!ENTITY automake-ch6-sbu "less than 0.1 SBU (without tests)">
    2626
    2727<!ENTITY bash-version "4.2">
     
    303303<!ENTITY less-ch6-sbu "less than 0.1 SBU">
    304304
    305 <!ENTITY lfs-bootscripts-version "20120530">                 <!-- Scripts depend on this format -->
     305<!ENTITY lfs-bootscripts-version "20120617">                 <!-- Scripts depend on this format -->
    306306<!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">         <!-- Updated in Makefile -->
    307307<!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.bz2">
Note: See TracChangeset for help on using the changeset viewer.